862. Shortest Subarray with Sum at Least K
862. Shortest Subarray with Sum at Least K
Description
Difficulty: Hard
Related Topics: Array, Binary Search, Queue, Sliding Window, Heap (Priority Queue), Prefix Sum, Monotonic Queue
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:
1 | Input: nums = [1], k = 1 |
Example 2:
1 | Input: nums = [1,2], k = 4 |
Example 3:
1 | Input: nums = [2,-1,2], k = 3 |
Constraints:
- 1 <= nums.length <= 105
- -105 <= nums[i] <= 105
- 1 <= k <= 109
Hints/Notes
- preSum + monotonic queue
Solution
Language: C++
1 | class Solution { |