mirror of
				https://gitee.com/coder-xiaomo/leetcode-problemset
				synced 2025-11-04 11:43:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<p>Given an array of integers called <code>nums</code>, you can perform <strong>any</strong> of 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>
 | 
						|
	<li>Choose the last two elements of <code>nums</code> and delete them.</li>
 | 
						|
	<li>Choose the first and the last 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,2,3,4]
 | 
						|
<strong>Output:</strong> 3
 | 
						|
<strong>Explanation:</strong> We perform the following operations:
 | 
						|
- Delete the first two elements, with score 3 + 2 = 5, nums = [1,2,3,4].
 | 
						|
- Delete the first and the last elements, with score 1 + 4 = 5, nums = [2,3].
 | 
						|
- Delete the first and the last elements, with score 2 + 3 = 5, nums = [].
 | 
						|
We are unable to perform any more operations as nums is empty.
 | 
						|
</pre>
 | 
						|
 | 
						|
<p><strong class="example">Example 2:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>Input:</strong> nums = [3,2,6,1,4]
 | 
						|
<strong>Output:</strong> 2
 | 
						|
<strong>Explanation:</strong> We perform the following operations:
 | 
						|
- Delete the first two elements, with score 3 + 2 = 5, nums = [6,1,4].
 | 
						|
- Delete the last two elements, with score 1 + 4 = 5, nums = [6].
 | 
						|
It can be proven that we can perform at most 2 operations.
 | 
						|
</pre>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong>Constraints:</strong></p>
 | 
						|
 | 
						|
<ul>
 | 
						|
	<li><code>2 <= nums.length <= 2000</code></li>
 | 
						|
	<li><code>1 <= nums[i] <= 1000</code></li>
 | 
						|
</ul>
 |