码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode Jump Game

时间:2016-01-12 10:10:38      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

LeetCode解题之Jump Game


原题

数组中的每个值表示在当前位置最多能向前面跳几步,判断给出的数组是否否存在一种跳法跳到最后。

注意点:

  • 所有的数字都是正数
  • 跳的步数可以比当前的值小

例子:

输入: nums = [2, 3, 1, 1, 4]

输出: True

输入: nums = [3, 2, 1, 0, 4]

输出: False

解题思路

先想一下什么时候不能够完成跳跃,在当前位置之前(包括当前位置)能够跳跃到的最远距离就是当前位置,且这时候还没有到终点;什么样的情况就能保证可以跳到终点呢,只要当前最远距离超过终点即可。只要当前的位置没有超过能跳到的最远距离,就可以不断的刷新最远距离来继续前进。

AC源码

class Solution(object):
    def canJump(self, nums):
        """
        :type nums: List[int]
        :rtype: bool
        """
        if not nums:
            return False
        length = len(nums)
        index = 0
        longest = nums[0]
        while index <= longest:
            if longest >= length - 1:
                return True
            longest = max(longest, index + nums[index])
            index += 1
        return False


if __name__ == "__main__":
    assert Solution().canJump([2, 3, 1, 1, 4]) == True
    assert Solution().canJump([3, 2, 1, 0, 4]) == False

欢迎查看我的Github来获得相关源码。

LeetCode Jump Game

标签:

原文地址:http://blog.csdn.net/u013291394/article/details/50499216

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!