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

leetcode-----45. 跳跃游戏 II

时间:2020-07-07 09:32:36      阅读:49      评论:0      收藏:0      [点我收藏+]

标签:游戏   ref   class   http   com   return   href   链接   ems   

代码

class Solution {
public:
    int jump(vector<int>& nums) {
        int n = nums.size();
        vector<int> f(n);

        for (int i = 1, j = 0; i < n; ++i) {
            while (j + nums[j] < i) j++;
            f[i] = f[j] + 1;
        }
        return f[n - 1];
    }
};

leetcode-----45. 跳跃游戏 II

标签:游戏   ref   class   http   com   return   href   链接   ems   

原文地址:https://www.cnblogs.com/clown9804/p/13258871.html

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