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

Jump gameII

时间:2015-07-01 10:06:40      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:algorithm   leetcode   

leetcode jump gameII

看了题解,用BFS是比较好的思路,一层表示当前步能到的节点,curmax表示最远的,和贪心有异曲同工之妙

class Solution {
public:
    int jump(vector<int>& a) {
        int n=a.size();
        if(n<=1) return 0;
        int i=0, level=0, curmax=0, nextmax=0;
        while(i<=n-1){
            for(;i<=curmax && i<=n-1;i++){
                nextmax=max(nextmax, a[i]+i);
                if(nextmax>=n-1) return level+1;
            }
            curmax=nextmax;
            level++;
        }
        return -1;
    }
};

之前写的dp,TLE了,当DP思维训练了
class Solution {
public:
    int jump(vector<int>& a) {
        int n=a.size();
        if(n<=1) return 0;
        int dp[n];
        dp[0]=0;
        for(int i=1;i<n;i++){
            dp[i]=INT_MAX;
            for(int j=0;j<i;j++){
                if(a[j]>=i-j)dp[i]=min(dp[i], dp[j]+1);
            }
        }
        return dp[n-1];
    }
};

版权声明:本文为博主原创文章,未经博主允许不得转载。

Jump gameII

标签:algorithm   leetcode   

原文地址:http://blog.csdn.net/richardzrc/article/details/46706073

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