赞
踩
跳跃游戏 II
给定一个非负整数数组,你最初位于数组的第一个位置。
数组中的每个元素代表你在该位置可以跳跃的最大长度。
你的目标是使用最少的跳跃次数到达数组的最后一个位置。
示例:
输入: [2,3,1,1,4]
输出: 2
解释: 跳到最后一个位置的最小跳跃数是 2。
从下标为 0 跳到下标为 1 的位置,跳 1 步,然后跳 3 步到达数组的最后一个位置。
说明:假设你总是可以到达数组的最后一个位置。
- #include<iostream>
- #include<vector>
-
- using namespace std;
-
- class Solution {
- public:
- int jump(vector<int>& nums) {
- int step = 0;
- int cur = 0;
- int next = 0;
- int i = 0;
-
- while(i < nums.size()) {
- if(cur >= nums.size() - 1) {
- break;
- }
-
- while(i <= cur) {
- next = max(next, nums[i] + i);
- i++;
- }
- step++;
- cur = next;
- }
-
- return step;
- }
- };
-
-
- int main()
- {
- Solution s;
- vector<int> vec = {2,3,1,1,4,3,2,5};
-
- int ret = s.jump(vec);
- cout << ret << endl;
-
- return 0;
- }
程序运行输出:3
贪心算法思想:当在值为2的位置时,可以跳值为3或值为1,要想最快就要跳的远,选3;当值为3时,可以跳1,1,4,同理选4,最后直接跳到末尾
学习地址:https://blog.csdn.net/hy971216/article/details/82792609
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。