Minimum Size Subarray Sum
Given an array of positive integers nums
and a positive integer target
, return the minimal length of a subarray whose sum is greater than or equal to target
. If there is no such subarray, return 0
instead.
Example 1:
Input: target = 7, nums = [2,3,1,2,4,3]
Output: 2
Explanation: The subarray [4,3]
has the minimal length under the problem constraint.
Example 2:
Input: target = 4, nums = [1,4,4]
Output: 1
Example 3:
Input: target = 11, nums = [1,1,1,1,1,1,1,1]
Output: 0
Constraints:
1 <= target <= 109
1 <= nums.length <= 105
1 <= nums[i] <= 104
Follow up: If you have figured out the O(n)
solution, try coding another solution of which the time complexity is O(n log(n))
.
Solution
We want to use a sliding window to find the minimum subarray (window).
Because the size of the window is unknown, we must use a flexible sliding window that searchs through all the valid windows that meet the requirement.
We will apply the flexible sliding window template on this question.
Our search starts on interval (0,0)
and extends rightwards before the total
reaches target
.
When the total
succeeds the target
we have found a valid subarray. Then, we start shrinking this subarray from the left finding a smaller subarray until the window is no longer valid.
Afterwards, we continue this process until we iterate through the entire array to find the minimum size subarray that has sum >= target
.
Implementation
def minSubArrayLen(self, target: int, nums: List[int]) -> int:
size = len(nums)+1
total, l = 0, 0
for r in range(len(nums)):
total += nums[r]
while total >= target: # valid
size = min(size, r-l+1)
total -= nums[l]
l += 1
return size if size != len(nums)+1 else 0
The above solution using a flexible sliding window uses O(n)
time complexity. As a follow up, is there an algorithm that solves this question in O(n log(n))
?
Yes! Consider using the n
elements in nums
as a starting point of a subarray, and then use O(log(n))
time complexity to find the endpoint of that subarray.
This is can be done via a for loop and a binary search on a prefix sum array.
def minSubArrayLen(self, target: int, nums: List[int]) -> int:
prefix_sum = [0]
for n in nums:
prefix_sum.append(prefix_sum[-1] + n)
size = len(nums)+1
for start in range(len(nums)):
total = 0
l, r, end = 0, len(nums)-1, -1
while l <= r:
mid = (l+r)//2
if prefix_sum[mid+1] - prefix_sum[start] >= target:
end, r = mid, mid - 1
else: l = mid + 1
if end != -1: size = min(size, end-start+1)
return size if size != len(nums)+1 else 0
Ready to land your dream job?
Unlock your dream job with a 2-minute evaluator for a personalized learning plan!
Start EvaluatorWhat are the most two important steps in writing a depth first search function? (Select 2)
Recommended Readings
LeetCode Patterns Your Personal Dijkstra's Algorithm to Landing Your Dream Job The goal of AlgoMonster is to help you get a job in the shortest amount of time possible in a data driven way We compiled datasets of tech interview problems and broke them down by patterns This way we
Recursion Recursion is one of the most important concepts in computer science Simply speaking recursion is the process of a function calling itself Using a real life analogy imagine a scenario where you invite your friends to lunch https algomonster s3 us east 2 amazonaws com recursion jpg You first
Runtime Overview When learning about algorithms and data structures you'll frequently encounter the term time complexity This concept is fundamental in computer science and offers insights into how long an algorithm takes to complete given a certain input size What is Time Complexity Time complexity represents the amount of time
Want a Structured Path to Master System Design Too? Don’t Miss This!