美文网首页
[LeetCode]55、跳跃游戏

[LeetCode]55、跳跃游戏

作者: 河海中最菜 | 来源:发表于2019-08-03 09:12 被阅读0次

    题目描述

    给定一个非负整数数组,你最初位于数组的第一个位置。

    数组中的每个元素代表你在该位置可以跳跃的最大长度。

    判断你是否能够到达最后一个位置。

    示例 1:

    输入: [2,3,1,1,4]
    输出: true
    解释: 从位置 0 到 1 跳 1 步, 然后跳 3 步到达最后一个位置。
    示例 2:

    输入: [3,2,1,0,4]
    输出: false
    解释: 无论怎样,你总会到达索引为 3 的位置。但该位置的最大跳跃长度是 0 , 所以你永远不可能到达最后一个位置。

    思路解析

    无法跳到最后的原因是因为到达0,并且之前的位置无法跳过0。

    class Solution:
        def canJump(self, nums):
            if not nums:
                return True
            # end 代表当前跳的最大位置
            end = 0
            for i in range(len(nums)-1):
                if nums[i] == 0 and i >= end:
                    return False
                if nums[i] + i > end:
                    end = nums[i] + i
            return True
    
    AC55

    相关文章

      网友评论

          本文标题:[LeetCode]55、跳跃游戏

          本文链接:https://www.haomeiwen.com/subject/tbiddctx.html