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-number-of-operations-to-make-array-empty].html
2023-10-05 03:40:12 +08:00

43 lines
1.6 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>给你一个下标从 <strong>0</strong>&nbsp;开始的正整数数组&nbsp;<code>nums</code>&nbsp;</p>
<p>你可以对数组执行以下两种操作 <strong>任意次</strong>&nbsp;</p>
<ul>
<li>从数组中选择 <strong>两个</strong>&nbsp;<strong>相等</strong>&nbsp;的元素,并将它们从数组中 <strong>删除</strong>&nbsp;</li>
<li>从数组中选择 <strong>三个</strong>&nbsp;<strong>相等</strong>&nbsp;的元素,并将它们从数组中 <strong>删除</strong>&nbsp;</li>
</ul>
<p>请你返回使数组为空的 <strong>最少</strong>&nbsp;操作次数,如果无法达成,请返回 <code>-1</code>&nbsp;</p>
<p>&nbsp;</p>
<p><strong class="example">示例 1</strong></p>
<pre>
<strong>输入:</strong>nums = [2,3,3,2,2,4,2,3,4]
<b>输出:</b>4
<b>解释:</b>我们可以执行以下操作使数组为空:
- 对下标为 0 和 3 的元素执行第一种操作,得到 nums = [3,3,2,4,2,3,4] 。
- 对下标为 2 和 4 的元素执行第一种操作,得到 nums = [3,3,4,3,4] 。
- 对下标为 0 1 和 3 的元素执行第二种操作,得到 nums = [4,4] 。
- 对下标为 0 和 1 的元素执行第一种操作,得到 nums = [] 。
至少需要 4 步操作使数组为空。
</pre>
<p><strong class="example">示例 2</strong></p>
<pre>
<b>输入:</b>nums = [2,1,2,2,3,3]
<b>输出:</b>-1
<b>解释:</b>无法使数组为空。
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>2 &lt;= nums.length &lt;= 10<sup>5</sup></code></li>
<li><code>1 &lt;= nums[i] &lt;= 10<sup>6</sup></code></li>
</ul>