-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsolution.cpp
48 lines (47 loc) · 1.18 KB
/
solution.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
/**
* 94 / 94 test cases passed.
* Runtime: 204 ms
* Memory Usage: 98.1 MB
*/
class Solution {
public:
bool checkSubarraySum(vector<int>& nums, int k) {
vector<int> ps(nums.size() + 1);
for (int i = 1; i < ps.size(); ++ i) {
ps[i] = ps[i - 1] + nums[i - 1];
}
unordered_set<int> st;
for (int i = 2; i < ps.size(); ++ i) {
st.insert(ps[i - 2] % k);
if (st.count(ps[i] % k)) {
return true;
}
}
return false;
}
};
/**
* 94 / 94 test cases passed.
* Runtime: 164 ms
* Memory Usage: 94.1 MB
*/
class Solution2 {
public:
bool checkSubarraySum(vector<int>& nums, int k) {
if (nums.size() < 2) return false;
unordered_map<int, int> mp;
int remainder = 0;
mp[0] = -1;
for (int i = 0; i < nums.size(); ++ i) {
remainder = (remainder + nums[i]) % k;
if (mp.count(remainder)) {
int prevIdx = mp[remainder];
if (i - prevIdx >= 2) {
return true;
}
}
else mp[remainder % k] = i;
}
return false;
}
};