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)/最多能完成排序的块 II [max-chunks-to-make-sorted-ii].html

36 lines
1.1 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>给你一个整数数组 <code>arr</code></p>
<p><code>arr</code> 分割成若干 <strong></strong> ,并将这些块分别进行排序。之后再连接起来,使得连接的结果和按升序排序后的原数组相同。</p>
<p>返回能将数组分成的最多块数?</p>
&nbsp;
<p><strong class="example">示例 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 class="example">示例 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>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= arr.length &lt;= 2000</code></li>
<li><code>0 &lt;= arr[i] &lt;= 10<sup>8</sup></code></li>
</ul>