mirror of
https://gitee.com/coder-xiaomo/leetcode-problemset
synced 2025-01-10 18:48:13 +08:00
41 lines
1.6 KiB
HTML
41 lines
1.6 KiB
HTML
<p>Given an array of integers called <code>nums</code>, you can perform the following operation while <code>nums</code> contains <strong>at least</strong> <code>2</code> elements:</p>
|
|
|
|
<ul>
|
|
<li>Choose the first two elements of <code>nums</code> and delete them.</li>
|
|
</ul>
|
|
|
|
<p>The<strong> score</strong> of the operation is the sum of the deleted elements.</p>
|
|
|
|
<p>Your task is to find the <strong>maximum</strong> number of operations that can be performed, such that <strong>all operations have the same score</strong>.</p>
|
|
|
|
<p>Return <em>the <strong>maximum</strong> number of operations possible that satisfy the condition mentioned above</em>.</p>
|
|
|
|
<p> </p>
|
|
<p><strong class="example">Example 1:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> nums = [3,2,1,4,5]
|
|
<strong>Output:</strong> 2
|
|
<strong>Explanation:</strong> We perform the following operations:
|
|
- Delete the first two elements, with score 3 + 2 = 5, nums = [1,4,5].
|
|
- Delete the first two elements, with score 1 + 4 = 5, nums = [5].
|
|
We are unable to perform any more operations as nums contain only 1 element.</pre>
|
|
|
|
<p><strong class="example">Example 2:</strong></p>
|
|
|
|
<pre>
|
|
<strong>Input:</strong> nums = [3,2,6,1,4]
|
|
<strong>Output:</strong> 1
|
|
<strong>Explanation:</strong> We perform the following operations:
|
|
- Delete the first two elements, with score 3 + 2 = 5, nums = [6,1,4].
|
|
We are unable to perform any more operations as the score of the next operation isn't the same as the previous one.
|
|
</pre>
|
|
|
|
<p> </p>
|
|
<p><strong>Constraints:</strong></p>
|
|
|
|
<ul>
|
|
<li><code>2 <= nums.length <= 100</code></li>
|
|
<li><code>1 <= nums[i] <= 1000</code></li>
|
|
</ul>
|