mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
54 lines
2.2 KiB
HTML
54 lines
2.2 KiB
HTML
<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 <= i < j < n</code></li>
|
||
<li><code>-target <= nums[j] - nums[i] <= target</code></li>
|
||
</ul>
|
||
|
||
<p>返回到达下标 <code>n - 1</code> 处所需的 <strong>最大跳跃次数</strong> 。</p>
|
||
|
||
<p>如果无法到达下标 <code>n - 1</code> ,返回 <code>-1</code> 。</p>
|
||
|
||
<p> </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> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>2 <= nums.length == n <= 1000</code></li>
|
||
<li><code>-10<sup>9</sup> <= nums[i] <= 10<sup>9</sup></code></li>
|
||
<li><code>0 <= target <= 2 * 10<sup>9</sup></code></li>
|
||
</ul>
|