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

leetcode 每日一题 45. 跳跃游戏 II

时间:2020-05-27 12:00:19      阅读:64      评论:0      收藏:0      [点我收藏+]

标签:游戏   style   pre   int   http   info   mamicode   技术   def   

技术图片技术图片

贪心算法

思路:

从头开始遍历数组,用end记录当前步所能到达的截止位置,maxPos记录下一步所能到达的最大位置,当遍历到当前步截止位置时,步数加一,end更新为下一步所能到达的最大位置,继续遍历。

代码:

class Solution:
    def jump(self, nums: List[int]) -> int:
        n = len(nums)
        maxPos, end, step = 0, 0, 0
        for i in range(n - 1):
            if maxPos >= i:
                maxPos = max(maxPos, i + nums[i])
                if i == end:
                    end = maxPos
                    step += 1
        return step

 

leetcode 每日一题 45. 跳跃游戏 II

标签:游戏   style   pre   int   http   info   mamicode   技术   def   

原文地址:https://www.cnblogs.com/nilhxzcode/p/12971311.html

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