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)/得到目标数组的最少函数调用次数 [minimum-numbers-of-function-calls-to-make-target-array].html
2022-03-29 12:43:11 +08:00

62 lines
1.9 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><img alt="" src="https://assets.leetcode.com/uploads/2020/07/10/sample_2_1887.png" style="height:294px; width:573px" /></p>
<p>给你一个与 <code>nums</code>&nbsp;大小相同且初始值全为 0 的数组 <code>arr</code> ,请你调用以上函数得到整数数组 <code>nums</code>&nbsp;</p>
<p>请你返回将 <code>arr</code>&nbsp;变成 <code>nums</code>&nbsp;的最少函数调用次数。</p>
<p>答案保证在 32 位有符号整数以内。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>nums = [1,5]
<strong>输出:</strong>5
<strong>解释:</strong>给第二个数加 1 [0, 0] 变成 [0, 1] 1 次操作)。
将所有数字乘以 2 [0, 1] -&gt; [0, 2] -&gt; [0, 4] 2 次操作)。
给两个数字都加 1 [0, 4] -&gt; [1, 4] -&gt; <strong>[1, 5]</strong> 2 次操作)。
总操作次数为1 + 2 + 2 = 5 。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>nums = [2,2]
<strong>输出:</strong>3
<strong>解释:</strong>给两个数字都加 1 [0, 0] -&gt; [0, 1] -&gt; [1, 1] 2 次操作)。
将所有数字乘以 2 [1, 1] -&gt; <strong>[2, 2]</strong> 1 次操作)。
总操作次数为: 2 + 1 = 3 。
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>nums = [4,2,5]
<strong>输出:</strong>6
<strong>解释:</strong>(初始)[0,0,0] -&gt; [1,0,0] -&gt; [1,0,1] -&gt; [2,0,2] -&gt; [2,1,2] -&gt; [4,2,4] -&gt; <strong>[4,2,5] </strong>nums 数组)。
</pre>
<p><strong>示例 4</strong></p>
<pre>
<strong>输入:</strong>nums = [3,2,2,4]
<strong>输出:</strong>7
</pre>
<p><strong>示例 5</strong></p>
<pre>
<strong>输入:</strong>nums = [2,4,8,16]
<strong>输出:</strong>8
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= nums.length &lt;= 10^5</code></li>
<li><code>0 &lt;= nums[i] &lt;= 10^9</code></li>
</ul>