forked from haoel/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MinimumSizeSubarraySum.cpp
52 lines (43 loc) · 1.59 KB
/
MinimumSizeSubarraySum.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Source : https://leetcode.com/problems/minimum-size-subarray-sum/
// Author : Hao Chen
// Date : 2015-06-09
/**********************************************************************************
*
* Given an array of n positive integers and a positive integer s, find the minimal length of a subarray
* of which the sum ≥ s. If there isn't one, return 0 instead.
*
* For example, given the array [2,3,1,2,4,3] and s = 7,
* the subarray [4,3] has the minimal length under the problem constraint.
*
* click to show more practice.
*
* More practice:
*
* If you have figured out the O(n) solution, try coding another solution of which the time complexity is O(n log n).
*
* Credits:Special thanks to @Freezen for adding this problem and creating all test cases.
*
**********************************************************************************/
class Solution {
public:
int minSubArrayLen(int s, vector<int>& nums) {
int min = nums.size();
int begin=0, end=0;
int sum = 0;
bool has = false;
for (int i=0; i<nums.size(); i++, end++){
sum += nums[i];
while (sum >= s && begin <= end) {
//the 1 is minial length, just return
if (begin == end) return 1;
if (end-begin+1 < min) {
min = end - begin + 1;
has = true;
}
//move the begin
sum -= nums[begin++];
}
}
return has ? min : 0;
}
};