Problem Description
You are given an array of positive integers beans
, where each integer represents the number of magic beans found in a particular magic bag. Remove any number of beans (possibly none) from each bag such that the number of beans in each remaining non-empty bag (still containing at least one bean) is equal. Return the minimum number of magic beans that you have to remove.
Key Insights
- The goal is to make the number of beans in the remaining non-empty bags equal.
- We need to find a target number of beans that can be achieved by removing the minimum possible number of beans.
- Sorting the array helps in efficiently determining how many beans need to be removed for each possible target.
- We can calculate the total beans and use a prefix sum to determine the beans to be removed for each bag.
Space and Time Complexity
Time Complexity: O(n log n) - due to sorting the array.
Space Complexity: O(1) - we are using a constant amount of extra space.
Solution
To solve this problem, we can follow these steps:
- Sort the array of beans.
- Calculate the total number of beans.
- Iterate through the sorted array and for each unique number of beans at index
i
, calculate how many beans would need to be removed to make all the remaining bags equal tobeans[i]
. - Keep track of the minimum beans removed across all iterations.
We use sorting to facilitate the process of determining how many beans need to be removed for each potential target.