-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path923.3-sum-with-multiplicity.py
44 lines (39 loc) · 1.35 KB
/
923.3-sum-with-multiplicity.py
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
#
# @lc app=leetcode id=923 lang=python3
#
# [923] 3Sum With Multiplicity
#
# @lc code=start
# TAGS: Two Pointers.
class Solution:
# 84 ms, 59.77%. Time: O(N^2). Space: O(N). Where N is the number of unique numbers in arr
def threeSumMulti(self, arr: List[int], target: int) -> int:
MOD = 10**9 + 7
def get_prod(a, b, c):
if a == b == c:
total = 0
cnt = counter[a]
for i in range(cnt):
rest = cnt - i - 1
total += rest * (rest - 1) / 2
return total
elif a == b:
return counter[a] * (counter[a] - 1) / 2 * counter[c]
elif b == c:
return counter[b] * (counter[b] - 1) / 2 * counter[a]
elif a == c:
return counter[a] * (counter[a] - 1) / 2 * counter[b]
return counter[a] * counter[b] * counter[c]
total = 0
counter = collections.Counter(arr)
nums = sorted(counter.keys())
for i, a in enumerate(nums):
if nums[i] * 3 > target:
break
seen = {}
for j, b in enumerate(nums[i:], i):
seen[target - (a + b)] = [a, b]
if b in seen:
total += get_prod(*seen[b], b) % MOD
return int(total) % MOD
# @lc code=end