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;
}
};
-
2:17:31
Laura Loomer
3 hours agoEP117: GOP Lets Radical Muslims Take Over Texas
16.1K24 -
LIVE
SpartakusLIVE
6 hours agoDuos w/ GloryJean on VERDANSK || #1 Most EATING Streamer
1,437 watching -
DVR
Spartan (Pro Halo esports Player)
7 hours agoSdcrims no comms, then College match
36.8K -
34:43
Stephen Gardner
5 hours ago🚨Trump Lawyer makes TWO HUGE ANNOUNCEMENTS | Benny Johnson
56.1K42 -
2:17:31
Robert Gouveia
6 hours agoJudge BLOCKS Proof-of-Citizenship! Trump BACK to Supreme Court! Deportee Discovery STAYED!
59.1K24 -
LIVE
MyronGainesX
20 hours ago $2.13 earnedCollege Debate Reaction, Jordan Peterson Sells Out, Shannon Sharpe Shakedown!
2,594 watching -
2:01:49
Joker Effect
2 hours agoWE ARE IN THE WILDWEST! Frontier Legends is crazy!
9.91K -
3:54:43
FrizzleMcDizzle
4 hours agoELDEN RING and I'm officially a creator on RUMBLE
11.4K -
1:33:35
theoriginalmarkz
5 hours agoEvening News with MarkZ, joined by Jonathan Otto. 04/24/2025
66.3K6 -
LIVE
Lilpaul112
5 hours agoSolos On the Island / Repo Time With the Brrrap Pack Gang!
91 watching