Patching Array
Problem Statement​
Given a sorted integer array nums
and an integer n
, add/patch elements to the array such that any number in the range [1, n]
inclusive can be formed by the sum of some elements in the array.
Return the minimum number of patches required.
Example:
Example 1:
Input: nums = [1,3]
, n = 6
Output: 1
Explanation:
Combinations of nums are [1]
, [3]
, [1,3]
, which form possible sums of: 1, 3, 4
.
Now if we add/patch 2
to nums, the combinations are: [1]
, [2]
, [3]
, [1,3]
, [2,3]
, [1,2,3]
.
Possible sums are 1, 2, 3, 4, 5, 6
, which now covers the range [1, 6]
.
So we only need 1
patch.
Example 2:
Input: nums = [1,5,10]
, n = 20
Output: 2
Explanation:
The two patches can be [2, 4]
.
Example 3:
Input: nums = [1,2,2]
, n = 5
Output: 0
Explanation:
In this case, the array nums
already covers all sums up to 5
, so no patches are needed.
Constraints:
1 <= nums.length <= 1000
1 <= nums[i] <= 10^4
nums
is sorted in ascending order.1 <= n <= 2 * 10^9 - 1
Solutions​
Approach​
The problem can be efficiently solved using a greedy approach:
-
Initialization:
- Initialize
miss
to1
, which represents the smallest number that cannot be formed with the current elements innums
. - Initialize
result
to0
to count the number of patches needed. - Initialize
i
to0
to iterate throughnums
.
- Initialize
-
Iterate Until Covering
n
:- While
miss
is less than or equal ton
, check if the current numbermiss
can be formed by adding elements fromnums
. - If
nums[i]
is less than or equal tomiss
, addnums[i]
tomiss
and move to the next element (i++
). - If
nums[i]
is greater thanmiss
ori
exceeds the length ofnums
, it meansmiss
cannot be formed with the current elements. Therefore, addmiss
itself tonums
to extend the range of possible sums and incrementresult
.
- While
-
Return Result:
- Once the loop ends and
miss
is greater thann
, returnresult
, which is the minimum number of patches required to cover all sums up ton
.
- Once the loop ends and
Java​
class Solution {
public int minPatches(int[] nums, int n) {
long miss = 1;
int result = 0;
int i = 0;
while (miss <= n) {
if (i < nums.length && nums[i] <= miss) {
miss += nums[i];
i++;
} else {
miss += miss;
result++;
}
}
return result;
}
Python​
from typing import List
class Solution:
def minPatches(self, nums: List[int], n: int) -> int:
miss = 1
result = 0
i = 0
while miss <= n:
if i < len(nums) and nums[i] <= miss:
miss += nums[i]
i += 1
else:
miss += miss
result += 1
return result