Problem Description
Given an integer array nums and an integer k, return the length of the shortest non-empty subarray of nums with a sum of at least k. If there is no such subarray, return -1.
Key Insights
- A subarray is a contiguous part of an array.
- We can use prefix sums to keep track of the sums of subarrays.
- A monotonic queue can help efficiently find the shortest subarray that meets the sum requirement.
- The problem can be approached using a sliding window technique combined with binary search.
Space and Time Complexity
Time Complexity: O(n)
Space Complexity: O(n)
Solution
To solve the problem, we will utilize a prefix sum array to store cumulative sums of the input array. We will then use a monotonic queue to maintain the indices of the prefix sums in a way that allows us to efficiently find the shortest subarray with a sum of at least k. The algorithm involves iterating through the prefix sums and checking the conditions using the queue to find valid subarrays.