forked from zhuli19901106/leetcode-zhuli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4sum-ii_1_AC.cpp
38 lines (34 loc) · 989 Bytes
/
4sum-ii_1_AC.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
#include <unordered_map>
using std::unordered_map;
class Solution {
public:
int fourSumCount(vector<int>& A, vector<int>& B, vector<int>& C, vector<int>& D) {
unordered_map<int, int> uab, ucd;
int na = A.size();
int nb = B.size();
int nc = C.size();
int nd = D.size();
int i, j;
for (i = 0; i < na; ++i) {
for (j = 0; j < nb; ++j) {
++uab[A[i] + B[j]];
}
}
for (i = 0; i < nc; ++i) {
for (j = 0; j < nd; ++j) {
++ucd[C[i] + D[j]];
}
}
unordered_map<int, int>::const_iterator it1, it2;
int res = 0;
for (it1 = uab.begin(); it1 != uab.end(); ++it1) {
it2 = ucd.find(-(it1->first));
if (it2 != ucd.end()) {
res += it1->second * it2->second;
}
}
uab.clear();
ucd.clear();
return res;
}
};