-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path75.py
35 lines (26 loc) · 1016 Bytes
/
75.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
import collections
import heapq
from itertools import combinations
class Solution:
def mostVisitedPattern(self, username: List[str], timestamp: List[int], website: List[str]) -> List[str]:
heap = []
for user, timestmp, web in zip(username, timestamp, website):
heapq.heappush(heap, (timestmp, web, user))
usermap = collections.defaultdict(list)
while heap:
_, web, user = heapq.heappop(heap)
usermap[user].append(web)
webmap = collections.defaultdict(int)
maxCount = 0
res = tuple()
for user, li in usermap.items():
comb = combinations(li, 3)
for webcomb in set(comb):
webmap[webcomb] += 1
if webmap[webcomb] > maxCount:
res = webcomb
maxCount = webmap[webcomb]
elif webmap[webcomb] == maxCount:
if webcomb < res:
res = webcomb
return res