1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-27 10:40:26 +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 Normal View History

2023-12-09 18:42:21 +08:00
<p>给你一个整数数组 <code>arr</code></p>
2022-03-27 20:46:41 +08:00
2023-12-09 18:42:21 +08:00
<p><code>arr</code> 分割成若干 <strong></strong> ,并将这些块分别进行排序。之后再连接起来,使得连接的结果和按升序排序后的原数组相同。</p>
2022-03-27 20:46:41 +08:00
2023-12-09 18:42:21 +08:00
<p>返回能将数组分成的最多块数?</p>
&nbsp;
2022-03-27 20:46:41 +08:00
2023-12-09 18:42:21 +08:00
<p><strong class="example">示例 1</strong></p>
2022-03-27 20:46:41 +08:00
<pre>
2023-12-09 18:42:21 +08:00
<strong>输入:</strong>arr = [5,4,3,2,1]
<strong>输出:</strong>1
<strong>解释:</strong>
将数组分成2块或者更多块都无法得到所需的结果。
2022-03-27 20:46:41 +08:00
例如,分成 [5, 4], [3, 2, 1] 的结果是 [4, 5, 1, 2, 3],这不是有序的数组。
</pre>
2023-12-09 18:42:21 +08:00
<p><strong class="example">示例 2</strong></p>
2022-03-27 20:46:41 +08:00
<pre>
2023-12-09 18:42:21 +08:00
<strong>输入:</strong>arr = [2,1,3,4,4]
<strong>输出:</strong>4
<strong>解释:</strong>
可以把它分成两块,例如 [2, 1], [3, 4, 4]。
2022-03-27 20:46:41 +08:00
然而,分成 [2, 1], [3], [4], [4] 可以得到最多的块数。
</pre>
2023-12-09 18:42:21 +08:00
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
2022-03-27 20:46:41 +08:00
<ul>
2023-12-09 18:42:21 +08:00
<li><code>1 &lt;= arr.length &lt;= 2000</code></li>
<li><code>0 &lt;= arr[i] &lt;= 10<sup>8</sup></code></li>
2022-03-27 20:46:41 +08:00
</ul>