markdown范本

7 篇文章 0 订阅
1 篇文章 0 订阅

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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值