1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-10 18:48:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/达到末尾下标所需的最大跳跃次数 [maximum-number-of-jumps-to-reach-the-last-index].html
2023-07-16 12:28:13 +08:00

54 lines
2.2 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>给你一个下标从 <strong>0</strong> 开始、由 <code>n</code> 个整数组成的数组 <code>nums</code> 和一个整数 <code>target</code></p>
<p>你的初始位置在下标 <code>0</code> 。在一步操作中,你可以从下标 <code>i</code> 跳跃到任意满足下述条件的下标 <code>j</code> </p>
<ul>
<li><code>0 &lt;= i &lt; j &lt; n</code></li>
<li><code>-target &lt;= nums[j] - nums[i] &lt;= target</code></li>
</ul>
<p>返回到达下标 <code>n - 1</code> 处所需的 <strong>最大跳跃次数</strong></p>
<p>如果无法到达下标 <code>n - 1</code> ,返回 <code>-1</code></p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre><strong>输入:</strong>nums = [1,3,6,4,1,2], target = 2
<strong>输出:</strong>3
<strong>解释:</strong>要想以最大跳跃次数从下标 0 到下标 n - 1 ,可以按下述跳跃序列执行操作:
- 从下标 0 跳跃到下标 1 。
- 从下标 1 跳跃到下标 3 。
- 从下标 3 跳跃到下标 5 。
可以证明,从 0 到 n - 1 的所有方案中,不存在比 3 步更长的跳跃序列。因此,答案是 3 。 </pre>
<p><strong>示例 2</strong></p>
<pre><strong>输入:</strong>nums = [1,3,6,4,1,2], target = 3
<strong>输出:</strong>5
<strong>解释:</strong>要想以最大跳跃次数从下标 0 到下标 n - 1 ,可以按下述跳跃序列执行操作:
- 从下标 0 跳跃到下标 1 。
- 从下标 1 跳跃到下标 2 。
- 从下标 2 跳跃到下标 3 。
- 从下标 3 跳跃到下标 4 。
- 从下标 4 跳跃到下标 5 。
可以证明,从 0 到 n - 1 的所有方案中,不存在比 5 步更长的跳跃序列。因此,答案是 5 。 </pre>
<p><strong>示例 3</strong></p>
<pre><strong>输入:</strong>nums = [1,3,6,4,1,2], target = 0
<strong>输出:</strong>-1
<strong>解释:</strong>可以证明不存在从 0 到 n - 1 的跳跃序列。因此,答案是 -1 。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>2 &lt;= nums.length == n &lt;= 1000</code></li>
<li><code>-10<sup>9</sup>&nbsp;&lt;= nums[i]&nbsp;&lt;= 10<sup>9</sup></code></li>
<li><code>0 &lt;= target &lt;= 2 * 10<sup>9</sup></code></li>
</ul>