贪心九:跳跃游戏II

题目地址: https://leetcode-cn.com/problems/jump-game-ii/

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

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

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

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

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

参考代码:

class Solution {
public:
    int jump(vector& nums) {
        if (nums.size()== 1) {
            return 0;
        }
        int current = 0; // 当前范围
        int next = 0; // 下一步最大范围
        int step = 0;
        int size = nums.size()-1;
        for (int i = 0; i<=size; i++) {
            if (current >= size) {
                return step;
            }
            next = max(next, i + nums[i]); //下一步能走的最大范围
            if (i == current) {
                step++;
                current = next;
            }
        }
        return step;
    }
};

参考链接: https://github.com/youngyangyang04/leetcode-master/blob/master/problems/0045.%E8%B7%B3%E8%B7%83%E6%B8%B8%E6%88%8FII.md

你可能感兴趣的:(贪心九:跳跃游戏II)