solution.md 1.2 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
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
# 跳跃游戏 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>

## template

```python
class Solution:
	def jump(self, nums):
		if len(nums) <= 1:
			return 0
		end = 0 + nums[0]
		start = 0
		step = 1
		maxDis = 0 + nums[0]
		while end < len(nums) - 1:
			for i in range(start + 1, end + 1):
				maxDis = max(maxDis, nums[i] + i)
			start = end
			end = maxDis
			step += 1
		return step
# %%
s = Solution()
print(s.jump(nums = [2,3,0,1,4]))
```

## 答案

```python

```

## 选项

### A

```python

```

### B

```python

```

### C

```python

```