mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
<p>给你一个整数数组 <code>arr</code> 。</p>
|
||
|
||
<p>将 <code>arr</code> 分割成若干 <strong>块</strong> ,并将这些块分别进行排序。之后再连接起来,使得连接的结果和按升序排序后的原数组相同。</p>
|
||
|
||
<p>返回能将数组分成的最多块数?</p>
|
||
|
||
|
||
<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> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= arr.length <= 2000</code></li>
|
||
<li><code>0 <= arr[i] <= 10<sup>8</sup></code></li>
|
||
</ul>
|