mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-11 02:58:13 +08:00
62 lines
1.9 KiB
HTML
62 lines
1.9 KiB
HTML
<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> 大小相同且初始值全为 0 的数组 <code>arr</code> ,请你调用以上函数得到整数数组 <code>nums</code> 。</p>
|
||
|
||
<p>请你返回将 <code>arr</code> 变成 <code>nums</code> 的最少函数调用次数。</p>
|
||
|
||
<p>答案保证在 32 位有符号整数以内。</p>
|
||
|
||
<p> </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] -> [0, 2] -> [0, 4] (2 次操作)。
|
||
给两个数字都加 1 :[0, 4] -> [1, 4] -> <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] -> [0, 1] -> [1, 1] (2 次操作)。
|
||
将所有数字乘以 2 : [1, 1] -> <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] -> [1,0,0] -> [1,0,1] -> [2,0,2] -> [2,1,2] -> [4,2,4] -> <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> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= nums.length <= 10^5</code></li>
|
||
<li><code>0 <= nums[i] <= 10^9</code></li>
|
||
</ul>
|