糖逗 发表于 2020-7-14 12:25:16

C++刷LeetCode(45. 跳跃游戏 II)【贪心思想】

题目描述:
给定一个非负整数数组,你最初位于数组的第一个位置。

数组中的每个元素代表你在该位置可以跳跃的最大长度。

你的目标是使用最少的跳跃次数到达数组的最后一个位置。

示例:

输入:
输出: 2
解释: 跳到最后一个位置的最小跳跃数是 2。
     从下标为 0 跳到下标为 1 的位置,跳 1 步,然后跳 3 步到达数组的最后一个位置。
说明:

假设你总是可以到达数组的最后一个位置。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/jump-game-ii
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

class Solution {
public:
    int jump(vector<int>& nums) {
      int res = 0;
      int cur = 0;
      int len = nums.size();
      while(cur < len-1){
            int step = nums;
            int max_pos = 0;
            int temp;
            for(int i = 1; i <= step; i++){
                if(cur + i >= len - 1)return ++res;
                if(cur + i + nums > max_pos){
                  max_pos = cur + i + nums;
                  temp = cur + i;
                }
            }
            res++;
            cur = temp;
      }
      return res;
    }
};


参考链接:https://leetcode-cn.com/problems/jump-game-ii/solution/xiang-xi-tong-su-de-si-lu-fen-xi-duo-jie-fa-by-10/
页: [1]
查看完整版本: C++刷LeetCode(45. 跳跃游戏 II)【贪心思想】