-
Notifications
You must be signed in to change notification settings - Fork 523
/
Copy path23. 3Sum With Multiplicity.cpp
67 lines (59 loc) · 1.49 KB
/
23. 3Sum With Multiplicity.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
60
61
62
63
64
65
66
67
/*
3Sum With Multiplicity
======================
Given an integer array arr, and an integer target, return the number of tuples i, j, k such that i < j < k and arr[i] + arr[j] + arr[k] == target.
As the answer can be very large, return it modulo 109 + 7.
Example 1:
Input: arr = [1,1,2,2,3,3,4,4,5,5], target = 8
Output: 20
Explanation:
Enumerating by the values (arr[i], arr[j], arr[k]):
(1, 2, 5) occurs 8 times;
(1, 3, 4) occurs 8 times;
(2, 2, 4) occurs 2 times;
(2, 3, 3) occurs 2 times.
Example 2:
Input: arr = [1,1,2,2,2,2], target = 5
Output: 12
Explanation:
arr[i] = 1, arr[j] = arr[k] = 2 occurs 12 times:
We choose one 1 from [1,1] in 2 ways,
and two 2s from [2,2,2,2] in 6 ways.
Constraints:
3 <= arr.length <= 3000
0 <= arr[i] <= 100
0 <= target <= 300
*/
class Solution
{
public:
int threeSumMulti(vector<int> &A, int target)
{
unordered_map<int, long long> freq;
for (auto &i : A)
freq[i]++;
long long ans = 0;
for (auto &it : freq)
{
for (auto &jt : freq)
{
auto i = it.first, j = jt.first, k = target - i - j;
if (freq.find(k) == freq.end())
continue;
if (i == j && j == k)
{
ans += freq[i] * (freq[i] - 1) * (freq[i] - 2) / 6;
}
else if (i == j && j != k)
{
ans += freq[i] * (freq[i] - 1) * freq[k] / 2;
}
else if (i < j && j < k)
{
ans += freq[i] * freq[j] * freq[k];
}
}
}
return ans % int(1e9 + 7);
}
};