mirror of
				https://gitee.com/coder-xiaomo/leetcode-problemset
				synced 2025-11-04 11:43:12 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<p>You are given an integer array <code>banned</code> and two integers <code>n</code> and <code>maxSum</code>. You are choosing some number of integers following the below rules:</p>
 | 
						|
 | 
						|
<ul>
 | 
						|
	<li>The chosen integers have to be in the range <code>[1, n]</code>.</li>
 | 
						|
	<li>Each integer can be chosen <strong>at most once</strong>.</li>
 | 
						|
	<li>The chosen integers should not be in the array <code>banned</code>.</li>
 | 
						|
	<li>The sum of the chosen integers should not exceed <code>maxSum</code>.</li>
 | 
						|
</ul>
 | 
						|
 | 
						|
<p>Return <em>the <strong>maximum</strong> number of integers you can choose following the mentioned rules</em>.</p>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong class="example">Example 1:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>Input:</strong> banned = [1,6,5], n = 5, maxSum = 6
 | 
						|
<strong>Output:</strong> 2
 | 
						|
<strong>Explanation:</strong> You can choose the integers 2 and 4.
 | 
						|
2 and 4 are from the range [1, 5], both did not appear in banned, and their sum is 6, which did not exceed maxSum.
 | 
						|
</pre>
 | 
						|
 | 
						|
<p><strong class="example">Example 2:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>Input:</strong> banned = [1,2,3,4,5,6,7], n = 8, maxSum = 1
 | 
						|
<strong>Output:</strong> 0
 | 
						|
<strong>Explanation:</strong> You cannot choose any integer while following the mentioned conditions.
 | 
						|
</pre>
 | 
						|
 | 
						|
<p><strong class="example">Example 3:</strong></p>
 | 
						|
 | 
						|
<pre>
 | 
						|
<strong>Input:</strong> banned = [11], n = 7, maxSum = 50
 | 
						|
<strong>Output:</strong> 7
 | 
						|
<strong>Explanation:</strong> You can choose the integers 1, 2, 3, 4, 5, 6, and 7.
 | 
						|
They are from the range [1, 7], all did not appear in banned, and their sum is 28, which did not exceed maxSum.
 | 
						|
</pre>
 | 
						|
 | 
						|
<p> </p>
 | 
						|
<p><strong>Constraints:</strong></p>
 | 
						|
 | 
						|
<ul>
 | 
						|
	<li><code>1 <= banned.length <= 10<sup>4</sup></code></li>
 | 
						|
	<li><code>1 <= banned[i], n <= 10<sup>4</sup></code></li>
 | 
						|
	<li><code>1 <= maxSum <= 10<sup>9</sup></code></li>
 | 
						|
</ul>
 |