博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【LeetCode每天一题】Jump Game II(跳跃游戏II)
阅读量:6692 次
发布时间:2019-06-25

本文共 1061 字,大约阅读时间需要 3 分钟。

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.Your goal is to reach the last index in the minimum number of jumps.

Example:

Input: [2,3,1,1,4]Output: 2Explanation: The minimum number of jumps to reach the last index is 2.Jump 1 step from index 0 to 1, then 3 steps to the last index.

Note:You can assume that you can always reach the last index.

思路


      这个我们可以参考跳跃游戏I的那个接替思路,只不过这里我们需要增加一个下标变量来记录step数。其余的都和跳跃游戏I一样。时间复杂度为O(n),空间复杂度为O(1)。

图示步骤


    

解决代码


 

1 class Solution(object): 2     def jump(self, nums): 3         """ 4         :type nums: List[int] 5         :rtype: int 6         """ 7         max_end = 0 8         end = 0 9         step = 0            # 记录步数10         for i in range(len(nums)-1):11             max_end = max(max_end, nums[i]+i)12             if i == end:       # 跟新最大下标位置,并步数加一13                 end = max_end14                 step += 115         return step

 

转载于:https://www.cnblogs.com/GoodRnne/p/10734897.html

你可能感兴趣的文章
3dmax2012卸载/安装失败/如何彻底卸载清除干净3dmax2012注册表和文件的方法
查看>>
Spring+SpringMVC+MyBatis深入学习及搭建(十五)——SpringMVC注解开发(基础篇)
查看>>
Spring+SpringMVC+MyBatis深入学习及搭建(九)——MyBatis和Spring整合
查看>>
javascript对象
查看>>
中国版Azure支持那些版本号Linux
查看>>
HDU 4858 项目管理
查看>>
SQL基础(一)
查看>>
python Robot Framework用法总结(转)
查看>>
jsp清除缓存
查看>>
javascript中this指向的理解(转载)
查看>>
linux 二级域名设置
查看>>
微信多客服插件获取openid
查看>>
java获得CPU使用率,系统内存,虚拟机内存等情况
查看>>
Vue项目搭建
查看>>
shell基础 -- 基本正则表达式
查看>>
METO CODE 223 拉力赛
查看>>
修改NavigationView中的Item的Icon大小
查看>>
协议类接口 - I2C
查看>>
Java生成二维码--QRGen
查看>>
数据集搜集整理
查看>>