mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
53 lines
1.9 KiB
HTML
53 lines
1.9 KiB
HTML
<p>给你一个整数数组 <code>target</code> 和一个数组 <code>initial</code> ,<code>initial</code> 数组与 <code>target</code> 数组有同样的维度,且一开始全部为 0 。</p>
|
||
|
||
<p>请你返回从 <code>initial</code> 得到 <code>target</code> 的最少操作次数,每次操作需遵循以下规则:</p>
|
||
|
||
<ul>
|
||
<li>在 <code>initial</code> 中选择 <strong>任意</strong> 子数组,并将子数组中每个元素增加 1 。</li>
|
||
</ul>
|
||
|
||
<p>答案保证在 32 位有符号整数以内。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>target = [1,2,3,2,1]
|
||
<strong>输出:</strong>3
|
||
<strong>解释:</strong>我们需要至少 3 次操作从 intial 数组得到 target 数组。
|
||
[0,0,0,0,0] 将下标为 0 到 4 的元素(包含二者)加 1 。
|
||
[1,1,1,1,1] 将下标为 1 到 3 的元素(包含二者)加 1 。
|
||
[1,2,2,2,1] 将下表为 2 的元素增加 1 。
|
||
[1,2,3,2,1] 得到了目标数组。
|
||
</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>target = [3,1,1,2]
|
||
<strong>输出:</strong>4
|
||
<strong>解释:</strong>(initial)[0,0,0,0] -> [1,1,1,1] -> [1,1,1,2] -> [2,1,1,2] -> [3,1,1,2] (target) 。
|
||
</pre>
|
||
|
||
<p><strong>示例 3:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>target = [3,1,5,4,2]
|
||
<strong>输出:</strong>7
|
||
<strong>解释:</strong>(initial)[0,0,0,0,0] -> [1,1,1,1,1] -> [2,1,1,1,1] -> [3,1,1,1,1]
|
||
-> [3,1,2,2,2] -> [3,1,3,3,2] -> [3,1,4,4,2] -> [3,1,5,4,2] (target)。
|
||
</pre>
|
||
|
||
<p><strong>示例 4:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>target = [1,1,1,1]
|
||
<strong>输出:</strong>1
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= target.length <= 10^5</code></li>
|
||
<li><code>1 <= target[i] <= 10^5</code></li>
|
||
</ul>
|