-
Notifications
You must be signed in to change notification settings - Fork 0
/
0045.跳跃游戏-ii.cpp
64 lines (62 loc) · 1.48 KB
/
0045.跳跃游戏-ii.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* @lc app=leetcode.cn id=45 lang=cpp
*
* [45] 跳跃游戏 II
*
* https://leetcode-cn.com/problems/jump-game-ii/description/
*
* algorithms
* Hard (31.23%)
* Likes: 289
* Dislikes: 0
* Total Accepted: 22.2K
* Total Submissions: 69.5K
* Testcase Example: '[2,3,1,1,4]'
*
* 给定一个非负整数数组,你最初位于数组的第一个位置。
*
* 数组中的每个元素代表你在该位置可以跳跃的最大长度。
*
* 你的目标是使用最少的跳跃次数到达数组的最后一个位置。
*
* 示例:
*
* 输入: [2,3,1,1,4]
* 输出: 2
* 解释: 跳到最后一个位置的最小跳跃数是 2。
* 从下标为 0 跳到下标为 1 的位置,跳 1 步,然后跳 3 步到达数组的最后一个位置。
*
*
* 说明:
*
* 假设你总是可以到达数组的最后一个位置。
*
*/
// @lc code=start
#include <algorithm>
#include <climits>
#include <iostream>
#include <sstream>
#include <vector>
using namespace std;
class Solution {
public:
int jump(vector<int>& nums)
{
int bound = 0;
int max_pos = 0;
int step = 0;
for (int i = 0; i < nums.size() - 1; ++i) {
max_pos = max_pos > (nums[i] + i) ? max_pos : (nums[i] + i);
if (i == bound) {
bound = max_pos;
++step;
if (max_pos >= nums.size()) {
return step;
}
}
}
return step;
}
};
// @lc code=end