Problem
You are given an integer array banned
and two integers n
and maxSum
. You are choosing some number of integers following the below rules:
- The chosen integers have to be in the range
[1, n]
. - Each integer can be chosen at most once.
- The chosen integers should not be in the array
banned
. - The sum of the chosen integers should not exceed
maxSum
.
Return the maximum number of integers you can choose following the mentioned rules.
Examples
Example 1:
|
|
Example 2:
|
|
Example 3:
|
|
Constraints:
1 <= banned.length <= 104
1 <= banned[i], n <= 104
1 <= maxSum <= 109
Solution
Method 1 - Using the set
Here is the approach:
- Convert the Banned Array to a Set: This allows for
O(1)
average-time complexity checks to quickly identify whether a number is banned. - Initialize Variables: Start with a sum accumulator set to zero and a counter for the chosen numbers.
- Iterate and Select Numbers: Iterate from 1 to
n
, and for each number:- Check if the number is in the banned set.
- Check if adding this number will exceed the
maxSum
. - If both checks pass, add this number to the sum and increase the count.
- Return the Count: The count will represent the maximum number of integers that can be chosen following the rules.
Video explanation
Here is the video explaining this method in detail. Please check it out:
Code
|
|
|
|
Complexity
- ⏰ Time complexity:
O(n + m)
, wheren
is the range up ton
andm
is the size of the banned array. Converting the banned array to a set takesO(m)
, and iterating through the range isO(n)
. - 🧺 Space complexity:
O(m)
for the set used to store banned elements.