mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
50 lines
1.7 KiB
HTML
50 lines
1.7 KiB
HTML
<p>给你一个整数数组 <code>arr</code> ,你一开始在数组的第一个元素处(下标为 0)。</p>
|
||
|
||
<p>每一步,你可以从下标 <code>i</code> 跳到下标 <code>i + 1</code> 、<code>i - 1</code> 或者 <code>j</code> :</p>
|
||
|
||
<ul>
|
||
<li><code>i + 1</code> 需满足:<code>i + 1 < arr.length</code></li>
|
||
<li><code>i - 1</code> 需满足:<code>i - 1 >= 0</code></li>
|
||
<li><code>j</code> 需满足:<code>arr[i] == arr[j]</code> 且 <code>i != j</code></li>
|
||
</ul>
|
||
|
||
<p>请你返回到达数组最后一个元素的下标处所需的 <strong>最少操作次数</strong> 。</p>
|
||
|
||
<p>注意:任何时候你都不能跳到数组外面。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>arr = [100,-23,-23,404,100,23,23,23,3,404]
|
||
<strong>输出:</strong>3
|
||
<strong>解释:</strong>那你需要跳跃 3 次,下标依次为 0 --> 4 --> 3 --> 9 。下标 9 为数组的最后一个元素的下标。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>arr = [7]
|
||
<strong>输出:</strong>0
|
||
<strong>解释:</strong>一开始就在最后一个元素处,所以你不需要跳跃。
|
||
</pre>
|
||
|
||
<p><strong>示例 3:</strong></p>
|
||
|
||
<pre>
|
||
<strong>输入:</strong>arr = [7,6,9,6,9,6,9,7]
|
||
<strong>输出:</strong>1
|
||
<strong>解释:</strong>你可以直接从下标 0 处跳到下标 7 处,也就是数组的最后一个元素处。
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
<meta charset="UTF-8" />
|
||
|
||
<ul>
|
||
<li><code>1 <= arr.length <= 5 * 10<sup>4</sup></code></li>
|
||
<li><code>-10<sup>8</sup> <= arr[i] <= 10<sup>8</sup></code></li>
|
||
</ul>
|