跳跃游戏

Posted charls

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了跳跃游戏相关的知识,希望对你有一定的参考价值。

给定一个非负整数数组,你最初位于数组的第一个位置。

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

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

示例:

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

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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/jump-game-ii

用贪心思想动态维护!!!!

class Solution {
public:

    int jump(vector<int>& nums) {
        int n=nums.size();
        int step=0;
        int maxpos=0;
        int end=0;
        for(int i=0;i<n;i++)
        {
            if(end>=i) maxpos=max(maxpos,i+nums[i]);
            if(end==i&&end!=n-1)
            {
                step++;
                end=maxpos;
            }

        }
        return step;

        
    }
};

 

以上是关于跳跃游戏的主要内容,如果未能解决你的问题,请参考以下文章

算法动态规划 ⑦ ( LeetCode 55. 跳跃游戏 | 算法分析 | 代码示例 )

动态规划跳跃游戏(III)

无代码iVX编程实现简单跳跃超级玛丽游戏

java刷题--55跳跃游戏

Unity实现2D平面游戏角色跳跃

java刷题--45跳跃游戏II