1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/最多能完成排序的块 II [max-chunks-to-make-sorted-ii].html

33 lines
1.3 KiB
HTML
Raw Normal View History

2022-03-27 20:46:41 +08:00
<p><em>这个问题和&ldquo;最多能完成排序的块&rdquo;相似,但给定数组中的元素可以重复,输入数组最大长度为<code>2000</code>,其中的元素最大为<code>10**8</code></em></p>
<p><code>arr</code>是一个可能包含<strong>重复元素</strong>的整数数组,我们将这个数组分割成几个&ldquo;&rdquo;,并将这些块分别进行排序。之后再连接起来,使得连接的结果和按升序排序后的原数组相同。</p>
<p>我们最多能将数组分成多少块?</p>
<p><strong>示例&nbsp;1:</strong></p>
<pre>
<strong>输入:</strong> arr = [5,4,3,2,1]
<strong>输出:</strong> 1
<strong>解释:</strong>
将数组分成2块或者更多块都无法得到所需的结果。
例如,分成 [5, 4], [3, 2, 1] 的结果是 [4, 5, 1, 2, 3],这不是有序的数组。
</pre>
<p><strong>示例 2:</strong></p>
<pre>
<strong>输入:</strong> arr = [2,1,3,4,4]
<strong>输出:</strong> 4
<strong>解释:</strong>
我们可以把它分成两块,例如 [2, 1], [3, 4, 4]。
然而,分成 [2, 1], [3], [4], [4] 可以得到最多的块数。
</pre>
<p><strong>注意:</strong></p>
<ul>
<li><code>arr</code>的长度在<code>[1, 2000]</code>之间。</li>
<li><code>arr[i]</code>的大小在<code>[0, 10**8]</code>之间。</li>
</ul>