-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnumrange.cpp
59 lines (47 loc) · 1017 Bytes
/
numrange.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
53
54
55
56
57
58
59
/*
Given an array of non negative integers A, and a range (B, C),
find the number of continuous subsequences in the array which
have sum S in the range [B, C] or B <= S <= C
*/
#include<bits/stdc++.h>
using namespace std;
int numRange(vector<int> &A, int B, int C) {
// copied code
int i = 0;
int j = 0;
int sum = 0;
int count = 0;
while(i < A.size()){
sum = sum + A[j];
if((sum >= B) && (sum <= C)){
count++;
j++;
}
else if(sum < B){
j++;
}
else if(sum > C){
i++;
j = i;
sum = 0;
}
if(j == A.size()){
sum = 0;
i++;
j = i;
}
}
return count;
}
int main(){
vector<int> vect{10,5,1,0,2};
int B = 6;
int C = 8;
int count = numRange(vect,B,C);
cout<<count<<endl;
}
/*
Continuous subsequence is defined as all the numbers
A[i], A[i + 1], .... A[j]
where 0 <= i <= j < size(A)
*/