solution.md 1.8 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1 2 3 4 5 6 7 8 9 10
# 跳跃游戏 II

<p>给定一个非负整数数组,你最初位于数组的第一个位置。</p>
<p>数组中的每个元素代表你在该位置可以跳跃的最大长度。</p>
<p>你的目标是使用最少的跳跃次数到达数组的最后一个位置。</p>
<p><strong>示例:</strong></p>
<pre><strong>输入:</strong> [2,3,1,1,4]<strong><br />输出:</strong> 2<strong><br />解释:</strong> 跳到最后一个位置的最小跳跃数是 2。从下标为 0 跳到下标为 1 的位置,跳&nbsp;1&nbsp;步,然后跳&nbsp;3&nbsp;步到达数组的最后一个位置。</pre>
<p><strong>说明:</strong></p>
<p>假设你总是可以到达数组的最后一个位置。</p>

每日一练社区's avatar
每日一练社区 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
以下程序实现了这一功能,请你填补空白处内容:

```cpp
#include <bits/stdc++.h>
using namespace std;
class Solution
{
public:
	int jump(vector<int> &nums)
	{
		int steps = 0;
		int lo = 0, hi = 0;
		while (hi < nums.size() - 1)
		{
			int right = 0;
			_______________________
			hi = right;
			steps++;
		}
		return steps;
	}
};
```

每日一练社区's avatar
每日一练社区 已提交
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 65
## template

```cpp
#include <bits/stdc++.h>
using namespace std;
class Solution
{
public:
	int jump(vector<int> &nums)
	{
		int steps = 0;
		int lo = 0, hi = 0;
		while (hi < nums.size() - 1)
		{
			int right = 0;
			for (int i = lo; i <= hi; i++)
			{
				right = max(i + nums[i], right);
			}
			lo = hi + 1;
			hi = right;
			steps++;
		}
		return steps;
	}
};
```

## 答案

```cpp
每日一练社区's avatar
每日一练社区 已提交
66 67 68 69 70
for (int i = lo; i <= hi; i++)
{
	right = max(i + nums[i], right);
}
lo = hi + 1;
每日一练社区's avatar
每日一练社区 已提交
71 72 73 74 75 76 77
```

## 选项

### A

```cpp
每日一练社区's avatar
每日一练社区 已提交
78 79 80 81 82
for (int i = lo; i <= hi; i++)
{
	right = max(i + nums[i], right);
}
lo = hi - 1;
每日一练社区's avatar
每日一练社区 已提交
83 84 85 86 87
```

### B

```cpp
每日一练社区's avatar
每日一练社区 已提交
88 89 90 91 92
for (int i = lo; i <= hi; i++)
{
	right = max(nums[i], right);
}
lo = hi - 1;
每日一练社区's avatar
每日一练社区 已提交
93 94 95 96 97
```

### C

```cpp
每日一练社区's avatar
每日一练社区 已提交
98 99 100 101 102
for (int i = lo; i <= hi; i++)
{
	right = max(nums[i], right);
}
lo = hi + 1;
每日一练社区's avatar
每日一练社区 已提交
103
```