209. Minimum Size Subarray Sum
Problem Description
The problem is essentially about finding the shortest continuous sequence of elements within an array of positive integers such that the sum of that sequence is at least as large as a given target value. To clarify, a subarray is defined as a contiguous part of an array. The task is to find the length of the smallest subarray that meets or exceeds the target sum. If no such subarray exists, the function should return zero.
For example, if the input array is [2, 3, 1, 2, 4, 3]
and the target is 7, the subarray [4, 3]
has the smallest length that sums up to 7 or more, so the answer would be the length of this subarray, which is 2.
Intuition
To solve this problem efficiently, we need to avoid checking all possible subarrays one by one since doing so would result in a very slow solution when dealing with a large array. The intuitive insight here is that we can do much better by using a "sliding window" approach. This approach involves maintaining a window that expands and contracts as we iterate through the array to find the smallest window that satisfies the condition.
Here's the thought process behind the sliding window solution:
- We start with two pointers, both at the beginning of the array. These pointers represent the margins of our current window.
- We move the end pointer to the right, adding numbers to our current window's sum.
- As soon as the window's sum becomes equal to or greater than the target, we attempt to shrink the window from the left to find smaller valid windows that still meet the sum criterion.
- Each successful window gives us a potential answer (its size), we keep track of the minimum size found.
- We continue this process until the end pointer reaches the end of the array, and there are no more subarrays to check.
- If the minimum length of the window is never updated from the initial setting that is larger than the array length, it means no valid subarray has been found, and we should return 0.
By using this approach, we can ensure that we only traverse the array once, giving us an efficient solution with a time complexity of O(n), where n is the length of the input array.
Learn more about Binary Search, Prefix Sum and Sliding Window patterns.
Solution Approach
The provided solution uses the Sliding Window pattern to solve the problem efficiently. This approach is useful when you need to find a subarray that meets certain criteria, and the problem can be solved in linear time without the need to check every possible subarray individually.
Here's how the sliding window algorithm is implemented in the solution:
- Initialize two pointers,
j
at0
to represent the start of the window andi
which will move through the array. - Maintain a running sum,
s
, of the values within the current window which starts at0
. - Iterate over the array using
i
and continuously add the value ofnums[i]
tos
. - Inside the loop, use a
while
loop to check if the current sums
is greater than or equal to the target. If it is, attempt to shrink the window from the left by:- Updating the minimum length of the valid window if necessary using
ans = min(ans, i - j + 1)
. - Subtracting
nums[j]
from the sums
since the left end of the window is moving to the right. - Incrementing
j
to actually move the window's start to the right.
- Updating the minimum length of the valid window if necessary using
- Once the end of the array is reached and there are no more elements to add to the sum, check if
ans
was updated or not. Ifans
is still greater than the length of the arrayn
, it means no valid subarray was found, so we return0
. - If
ans
was updated during the process (meaning a valid subarray was found), return the value ofans
which holds the length of the smallest subarray with a sum of at leasttarget
.
The use of two pointers to create a window that slides over the array allows this algorithm to run in O(n)
time, making it very efficient for this type of problem.
Please note that the Reference Solution Approach mentions another method which is using PreSum & Binary Search but the provided code doesn't implement this method. The PreSum & Binary Search method involves creating an array of prefix sums and then using binary search to find the smallest valid subarray for each element. This is a bit more complex and generally not as efficient as the Sliding Window method used here which requires only O(n)
time and O(1)
extra space.
Ready to land your dream job?
Unlock your dream job with a 2-minute evaluator for a personalized learning plan!
Start EvaluatorExample Walkthrough
Let's use a small example to illustrate the sliding window approach described in the solution. Suppose we have the array [1, 2, 3, 4, 5]
and our target sum is 11.
We want to find the smallest subarray whose sum is at least 11. We'll follow the steps of the sliding window algorithm:
- Initialize the pointers
i
andj
both to0
, and the running sums
also to0
. - Start iterating over the array with
i
. Our window size is currently0
.
First iteration (i = 0
):
- Add
nums[i]
tos
. Now,s
is1
. - It's less than the target (11), so we move on to the next number.
Second iteration (i = 1
):
- Now,
s
is1 + 2 = 3
. - Still less than the target.
Third iteration (i = 2
):
s
becomes1 + 2 + 3 = 6
.- Again, we continue since
s
is less than our target sum.
Fourth iteration (i = 3
):
s
is now1 + 2 + 3 + 4 = 10
.- It is still below the target sum of 11.
Fifth iteration (i = 4
):
s
is now1 + 2 + 3 + 4 + 5 = 15
, which is greater than our target of 11. We've now found a subarray[1, 2, 3, 4, 5]
with the sum greater than or equal to the target.- Now we try to shrink the window from the left to see if there is a smaller subarray that still meets or exceeds the target sum.
- Before moving
j
, we update the answerans
to the current window size, which isi - j + 1 = 5 - 0 + 1 = 5
.
Now we enter the while loop to shrink the window since s >= target
:
- We reduce
s
bynums[j]
.s
becomes15 - 1 = 14
, and we incrementj
to1
. The window is now[2, 3, 4, 5]
. s
is14
, which is still greater than 11, so we repeat the procedure.s
becomes14 - 2 = 12
after removing the next element andj
goes to2
. The window is[3, 4, 5]
.- With
s
at12
, it's still greater than 11, continue to shrink. - We subtract
3
to gets = 12 - 3 = 9
and movej
to3
. Nows
is less than 11, so we stop shrinking the window.
Our smallest subarray that meets the requirement so far is [3, 4, 5]
with a length of 3
. Since we've already reached the end of the array, we're done iterating, and we can return the answer, which is 3
.
This example successfully demonstrated the sliding window technique where we expanded the window until we exceeded the target sum, then shrank the window from the left to find the smallest subarray that still meets the sum condition. The array [3, 4, 5]
is the smallest subarray with a sum greater than or equal to the target 11, so the result is the length of this subarray, which is 3
.
Solution Implementation
1class Solution:
2 def minSubarrayLength(self, target: int, nums: List[int]) -> int:
3 # Initialize the length of the array
4 length_of_nums = len(nums)
5 # Set an initial answer value to a large number (beyond possible maximum)
6 min_length = length_of_nums + 1
7 # Initialize the sum of the current subarray and the start index j
8 sum_of_subarray = start_index = 0
9 # Loop over the elements in the array with their indices
10 for end_index, value in enumerate(nums):
11 # Add the current number to the sum of the current subarray
12 sum_of_subarray += value
13 # Shrink the subarray from the left (increase the start index)
14 # until the sum is no longer greater or equal to the target
15 while start_index < length_of_nums and sum_of_subarray >= target:
16 # Update the minimum length if a shorter subarray is found
17 min_length = min(min_length, end_index - start_index + 1)
18 # Subtract the element at start_index from sum as we are excluding it from the subarray
19 sum_of_subarray -= nums[start_index]
20 start_index += 1
21 # If min_length is updated, return it; otherwise, no such subarray exists and return 0
22 return min_length if min_length <= length_of_nums else 0
23
1class Solution {
2
3 // This method finds the minimum length of a subarray that sums to at least the given target.
4 public int minSubArrayLen(int target, int[] nums) {
5 int n = nums.length; // The length of the input array.
6 long sum = 0; // The sum of the current subarray.
7 int minLength = n + 1; // Initialize minLength with max possible value plus one for comparison.
8
9 // Two pointers method: i is the end-pointer, j is the start-pointer of the sliding window.
10 for (int end = 0, start = 0; end < n; ++end) {
11 sum += nums[end]; // Increment the sum by the current element value.
12
13 // Shrink the window from the left until the sum is smaller than the target.
14 // This finds the smallest window that ends at position 'end'.
15 while (start < n && sum >= target) {
16 minLength = Math.min(minLength, end - start + 1); // Update minLength if a smaller length is found.
17 sum -= nums[start++]; // Decrease the sum by the start-value and increment start-pointer to shrink the window.
18 }
19 }
20
21 // If minLength is updated (smaller than n + 1), we found a valid subarray.
22 // Otherwise, return 0 as a subarray meeting the conditions is not found.
23 return minLength <= n ? minLength : 0;
24 }
25}
26
1class Solution {
2public:
3 // Function to find the minimum length subarray sum
4 // that is greater than or equal to the given target.
5 int minSubArrayLen(int target, vector<int>& nums) {
6 int n = nums.size(); // Size of the input array
7 long long sum = 0; // Long long to avoid overflow when summing up
8 int ans = n + 1; // Initialize the answer to the max possible length+1 (invalid case scenario)
9
10 // Two pointers, 'i' is the end of the current subarray
11 // 'j' is the start of the current subarray
12 for (int i = 0, j = 0; i < n; ++i) {
13 sum += nums[i]; // Increase the sum by the current element
14
15 // While sum is not smaller than the target and start pointer 'j' has not reached the end
16 while (j < n && sum >= target) {
17 ans = min(ans, i - j + 1); // Update the answer with the new minimum length
18 sum -= nums[j++]; // Subtract the first element of the subarray and move 'j' right
19 }
20 }
21
22 // If 'ans' didn't change, no valid subarray was found, return 0
23 // Otherwise, return the length of the shortest subarray
24 return ans == n + 1 ? 0 : ans;
25 }
26};
27
1function minSubArrayLen(target: number, nums: number[]): number {
2 // Length of the input array
3 const length = nums.length;
4 // Initialize the sum of the current subarray
5 let currentSum = 0;
6 // Set an initial minimum length for the subarray to an impossible maximum (length+1)
7 let minLength = length + 1;
8
9 // Set the starting points for the sliding window
10 for (let start = 0, end = 0; start < length; ++start) {
11 // Add the current number to the current sum
12 currentSum += nums[start];
13
14 // While the current sum is equal or above the target,
15 // adjust the window to find the minimum length
16 while (currentSum >= target) {
17 // Calculate the length of the current subarray
18 // and update the minLength if it's smaller than the existing minLength
19 minLength = Math.min(minLength, start - end + 1);
20
21 // Subtract the first number of the current subarray
22 // and move the window forward
23 currentSum -= nums[end++];
24 }
25 }
26
27 // If minLength was not updated, it means no valid subarray was found, so return 0
28 // Otherwise, return the minLength found
29 return minLength === length + 1 ? 0 : minLength;
30}
31
Time and Space Complexity
The time complexity of the code is O(n)
, where n
is the length of the input list nums
. This is because there are two pointers i
and j
, both of which travel across the list at most once. The inner while
loop only increases j
and decreases the sum s
until the sum is less than the target
, but j
can never be increased more than n
times throughout the execution of the algorithm. Therefore, each element is processed at most twice, once when it is added to s
and once when it is subtracted, leading to a linear time complexity.
The space complexity of the code is O(1)
, which means it requires a constant amount of additional space. This is because the algorithm only uses a fixed number of single-value variables (n
, ans
, s
, j
, i
, x
) and does not utilize any data structures that grow with the size of the input.
Learn more about how to find time and space complexity quickly using problem constraints.
You are given an array of intervals where intervals[i] = [start_i, end_i]
represent the start and end of the ith
interval. You need to merge all overlapping intervals and return an array of the non-overlapping intervals that cover all the intervals in the input.
Recommended Readings
Binary Search Speedrun For each of the Speedrun questions you will be given a binary search related problem and a corresponding multiple choice question The multiple choice questions are related to the techniques and template s introduced in the binary search section It's recommended that you have gone through at
Prefix Sum The prefix sum is an incredibly powerful and straightforward technique Its primary goal is to allow for constant time range sum queries on an array What is Prefix Sum The prefix sum of an array at index i is the sum of all numbers from index 0 to i By
https algomonster s3 us east 2 amazonaws com cover_photos stack svg Sliding Window Maximum Monotonic Stack We have an array and a sliding window defined by a start index and an end index The sliding window moves from left of the array to right There are always k elements in
Want a Structured Path to Master System Design Too? Don’t Miss This!