Premium Only Content
862. Shortest Subarray with Sum at Least K
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.
A subarray is a contiguous part of an array.
Example 1:
Input: nums = [1], k = 1
Output: 1
Example 2:
Input: nums = [1,2], k = 4
Output: -1
Example 3:
Input: nums = [2,-1,2], k = 3
Output: 3
Constraints:
1 <= nums.length <= 105
-105 <= nums[i] <= 105
1 <= k <= 109
class Solution {
public:
int shortestSubarray(vector<int>& nums, int k) {
int n = nums.size();
// Initialize result to the maximum possible integer value
int shortestSubarrayLength = INT_MAX;
long long cumulativeSum = 0;
// Min-heap to store cumulative sum and its corresponding index
priority_queue<pair<long long, int>, vector<pair<long long, int>>,greater<>> prefixSumHeap;
// Iterate through the array
for (int i = 0; i < n; i++) {
// Update cumulative sum
cumulativeSum += nums[i];
// If cumulative sum is already >= k, update shortest length
if (cumulativeSum >= k) {
shortestSubarrayLength = min(shortestSubarrayLength, i + 1);
}
// Remove subarrays from heap that can form a valid subarray
while (!prefixSumHeap.empty() && cumulativeSum - prefixSumHeap.top().first >= k) {
// Update shortest subarray length
shortestSubarrayLength = min(shortestSubarrayLength, i - prefixSumHeap.top().second);
prefixSumHeap.pop();
}
// Add current cumulative sum and index to heap
prefixSumHeap.emplace(cumulativeSum, i);
}
// Return -1 if no valid subarray found
return shortestSubarrayLength == INT_MAX ? -1 : shortestSubarrayLength;
}
};
-
1:31:56
Michael Franzese
16 hours agoWill NBA do anything about their Gambling Problems?
97.5K18 -
57:26
X22 Report
5 hours agoMr & Mrs X - The Food Industry Is Trying To Pull A Fast One On RFK Jr (MAHA), This Will Fail - EP 14
70.2K40 -
2:01:08
LFA TV
1 day agoTHE RUMBLE RUNDOWN LIVE @9AM EST
129K11 -
1:28:14
On Call with Dr. Mary Talley Bowden
3 hours agoI came for my wife.
9.33K5 -
1:06:36
Wendy Bell Radio
8 hours agoPet Talk With The Pet Doc
44.4K24 -
30:58
SouthernbelleReacts
2 days ago $5.58 earnedWe Didn’t Expect That Ending… ‘Welcome to Derry’ S1 E1 Reaction
24.4K8 -
13:51
True Crime | Unsolved Cases | Mysterious Stories
5 days ago $14.14 earned7 Real Life Heroes Caught on Camera (Remastered Audio)
40.7K10 -
LIVE
Total Horse Channel
14 hours ago2025 IRCHA Derby & Horse Show - November 1st
141 watching -
4:19
PistonPop-TV
6 days ago $5.78 earnedThe 4E-FTE: Toyota’s Smallest Turbo Monster
36.6K -
43:07
WanderingWithWine
6 days ago $3.20 earned5 Dreamy Italian Houses You Can Own Now! Homes for Sale in Italy
27.5K9