Problem Description
Given a bag containing items with values of 1, 0, or -1, you have four non-negative integers: numOnes
, numZeros
, numNegOnes
, and k
. The task is to select exactly k
items from the bag to maximize the sum of the values of the selected items.
Key Insights
- To maximize the sum, prioritize selecting items with the highest values first.
- The maximum contribution to the sum is from the
numOnes
. Ifk
is less than or equal tonumOnes
, the maximum sum is simplyk
. - If
k
exceedsnumOnes
, take allnumOnes
and then fill the remaining selections withnumZeros
(which contribute 0). - The negative items (
numNegOnes
) should only be selected if absolutely necessary (i.e., ifk
exceeds the total number of available items).
Space and Time Complexity
Time Complexity: O(1)
Space Complexity: O(1)
Solution
To solve the problem, we will use a greedy approach:
- First, check how many
1
s can be selected. Ifk
is less than or equal tonumOnes
, the maximum sum is simplyk
. - If
k
exceedsnumOnes
, take allnumOnes
(which gives a sum ofnumOnes
), then check how many more items you can take:- Fill with
numZeros
next, which does not affect the sum. - If there are still remaining selections after taking
numOnes
andnumZeros
, they will have to be filled with-1
items.
- Fill with
- Calculate the final sum based on these selections.