Problem
Solution
Back-forward
- 首先把 list 里最后一项作为目标。
- 由后向前寻找可以到达目标的位置i(满足 i + nums[i] >= des)。
- 如果发现满足条件的位置 i ,把目标更新为位置 i,如果 i 为 0,返回 True,否则然后开始下一个循环。
- 如果找不到满足条件的 i, 返回 False
Explanation in English :
- Set des(destination) equals to the last item in the “nums”.
- From back to front finding i which can meet the condition: i + nums[i] >= des
- If we can find i satisfies the condition, set des = i. If i == 0, then return True, otherwise start the next loop.
- If there is no i can meet the condition, return False.
class Solution:
def canJump(self, nums) -> int:
if not nums or len(nums) == 1:
return True
des = len(nums) - 1
for I in range(des - 1, -1, -1):
if I + nums[I] >= des:
des = i
if des == 0:
return True
Greedy
Chinese:
我们也可以通过修改问题45 的代码通过贪婪算法得到答案。
English:
We can easily change our code in Problem 45 to get the solution.
class Solution:
def canJump(self, nums) -> int:
if not nums or len(nums) == 1:
return False
des = len(nums) - 1
I = 0
max_range = 0
nxt = 0
while I < des:
if I + nums[I] >= des:
return True
for r in range(I + 1, I + nums[I] + 1):
if r + nums[r] > max_range:
max_range = r + nums[r]
nxt = r
if I == nxt:
return False
else:
I = nxt
如何刷题 : Leetcode 题目的正确打开方式
我的GitHub : Jedi-XL
其他题目答案:leetcode题目答案讲解汇总(Python版 持续更新)
我的博客里还有其他好东西: 苔原带