55. Jump Game
题目:
Given an array of non-negative integers, you are initially positioned at the first index of the array.
Each element in the array represents your maximum jump length
at that position.
Determine if you are able to reach the last index.
这里要尤其注意是maximum jump length, 可以跳到的最远的地方。
想法1:leetcode solution
最终要考察能不能达到最后一个index。所以从最后一个index反过来看能不能最终到达nums[0]这个。
我们维护一个lastone
变量,如果当前位置index + index对应的值nums[index]大于lastone
,那我们就更新lastone
,表示在当前index处能够达到最后,否则就不更新。遍历完成后,检查lastone
有没有到达最前部。
class Solution(object):
def canJump(self, nums):
"""
:type nums: List[int]
:rtype: bool
"""
length = len(nums)
lastone = length - 1
for i in xrange(lastone, -1, -1):
if (nums[i] + i) >= lastone:
lastone = i
return 0 == lastone
想法2:from leetcode
从前部开始遍历,维护一个当前最大能达到的值,如果当前最大能达到的值小于了我们正在考察的index,则false。
class Solution(object):
def canJump(self, nums):
"""
:type nums: List[int]
:rtype: bool
"""
d = 0
l = len(nums)
for i in range(l):
if d < i:
return False
d = max(d, nums[i] + i)
return True