算法第16周Jump Game II[hard]

来源:互联网 发布:淘宝上为啥不卖电视棒 编辑:程序博客网 时间:2024/06/16 00:51

Description

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.

For example:
Given array A = [2,3,1,1,4]

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.


Solution

这道题目与上一道题目的题意基本相同,只不过这道题目是要计算到达最后位置的最短步数。
我们可以采用BFS的方法,记住每一次的移动都可以到达那些位置。
一开始我想记住每一次可以到达的位置,但最后发现会超时,然后结合本题,我们可以每一次只需记录最远可以到达的位置即可,而不需记录每一个位置。
用curMax记录当前可以到达的最远位置,当前位置为i,i必须小于等于curMax;用nextMax记录移动一步后可以到达的最远位置。要记住,当前位置可以是从i到curMax的任意点。

class Solution {public:    int jump(vector<int>& nums) {        if (nums.size() < 2) return 0;        int result = 0;        int curMax = 0, i = 0, nextMax = 0;        while (i <= curMax) {            result++;            for (;i <= curMax; i++) {                nextMax = max(nextMax, i+nums[i]);                if (nextMax >= nums.size()-1) return result;            }            curMax = nextMax;        }        return 0;    }};
阅读全文
'); })();
0 0
原创粉丝点击
热门IT博客
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 苹果手机乱码了怎么办 苹果6手机乱跳屏怎么办 魅族mx3跳屏怎么办 小米4跳屏怎么办 5s触摸屏不灵敏怎么办 平板触屏失灵怎么办 平板触屏不灵敏怎么办 苹果5触摸屏失灵怎么办 苹果6plus 失灵怎么办 苹果手机中病毒怎么办 苹果屏幕碎一点怎么办 苹果se手机进水怎么办 苹果6splus弯曲怎么办 苹果手机屏失灵怎么办 iphone7屏幕碎了怎么办 iwatch屏幕刮花怎么办 iwatch2碎屏了怎么办 iwatch配对不上怎么办 苹果手机6进水怎么办 ipad4屏幕碎了怎么办 快递收到后破损怎么办 乐视电视机进水怎么办 ipad黑屏没反应怎么办 ipad不能开机了怎么办 平板开不了机怎么办 苹果6屏幕松动怎么办 5s外屏碎了怎么办 小米3触屏没反应怎么办 小米5触摸屏失灵怎么办 华为手机没反应怎么办 手机玩游戏卡顿怎么办 苹果6手机死机怎么办 苹果7手机死机怎么办 苹果4手机死机怎么办 苹果手机死机了怎么办 苹果7黑屏打不开怎么办 iphon6s触屏不灵怎么办 6s触摸屏不灵敏怎么办 6plus屏幕不灵敏怎么办 导航仪屏幕失灵怎么办 5s触屏点不动怎么办