mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
32 lines
1.5 KiB
HTML
32 lines
1.5 KiB
HTML
<p>给你一个整数数组 <code>nums</code> 和一个整数 <code>k</code> 。请你向 <code>nums</code> 中追加 <code>k</code> 个 <strong>未</strong> 出现在 <code>nums</code> 中的、<strong>互不相同</strong> 的 <strong>正</strong> 整数,并使结果数组的元素和 <strong>最小</strong> 。</p>
|
||
|
||
<p>返回追加到 <code>nums</code> 中的 <code>k</code> 个整数之和。</p>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>示例 1:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>nums = [1,4,25,10,25], k = 2
|
||
<strong>输出:</strong>5
|
||
<strong>解释:</strong>在该解法中,向数组中追加的两个互不相同且未出现的正整数是 2 和 3 。
|
||
nums 最终元素和为 1 + 4 + 25 + 10 + 25 + 2 + 3 = 70 ,这是所有情况中的最小值。
|
||
所以追加到数组中的两个整数之和是 2 + 3 = 5 ,所以返回 5 。</pre>
|
||
|
||
<p><strong>示例 2:</strong></p>
|
||
|
||
<pre><strong>输入:</strong>nums = [5,6], k = 6
|
||
<strong>输出:</strong>25
|
||
<strong>解释:</strong>在该解法中,向数组中追加的两个互不相同且未出现的正整数是 1 、2 、3 、4 、7 和 8 。
|
||
nums 最终元素和为 5 + 6 + 1 + 2 + 3 + 4 + 7 + 8 = 36 ,这是所有情况中的最小值。
|
||
所以追加到数组中的两个整数之和是 1 + 2 + 3 + 4 + 7 + 8 = 25 ,所以返回 25 。
|
||
</pre>
|
||
|
||
<p> </p>
|
||
|
||
<p><strong>提示:</strong></p>
|
||
|
||
<ul>
|
||
<li><code>1 <= nums.length <= 10<sup>5</sup></code></li>
|
||
<li><code>1 <= nums[i], k <= 10<sup>9</sup></code></li>
|
||
</ul>
|