Minimum Limit of Balls in a Bag - Problem
You are given an integer array nums where the ith bag contains nums[i] balls. You are also given an integer maxOperations.
You can perform the following operation at most maxOperations times:
- Take any bag of balls and divide it into two new bags with a positive number of balls.
- For example, a bag of 5 balls can become two new bags of 1 and 4 balls, or two new bags of 2 and 3 balls.
Your penalty is the maximum number of balls in a bag. You want to minimize your penalty after the operations.
Return the minimum possible penalty after performing the operations.
Input & Output
Example 1 — Basic Case
$
Input:
nums = [9], maxOperations = 2
›
Output:
3
💡 Note:
Split bag of 9 balls: 9 → 6,3 → 3,3,3. Penalty is max(3,3,3) = 3.
Example 2 — Multiple Bags
$
Input:
nums = [2,4,8,2], maxOperations = 4
›
Output:
2
💡 Note:
Split 8 into 4,4, then each 4 into 2,2. Result: [2,4,2,2,2,2,2]. Max penalty = 4, but we can do better by splitting the 4 too for penalty 2.
Example 3 — No Operations Needed
$
Input:
nums = [1,2,3], maxOperations = 5
›
Output:
3
💡 Note:
Already optimal - max is 3 and we don't need any operations.
Constraints
- 1 ≤ nums.length ≤ 105
- 1 ≤ maxOperations ≤ 109
- 1 ≤ nums[i] ≤ 109
Visualization
Tap to expand
Understanding the Visualization
1
Input
Array of bag sizes and max operations allowed
2
Split Strategy
Binary search finds optimal penalty to target
3
Output
Minimum possible maximum bag size
Key Takeaway
🎯 Key Insight: Use binary search on the penalty value since the problem has monotonic property
💡
Explanation
AI Ready
💡 Suggestion
Tab
to accept
Esc
to dismiss
// Output will appear here after running code