[問題] leetcode 2029 (Hard) 的問題
不知這裡有沒有高手有參加這週的Leetcode 週賽,想請教leetcode 2029
https://leetcode.com/problems/find-all-people-with-secret/
這題我是用Union-Find來做的,思路大致是:
先用一個dictionary把同一個時間的meeting放在一起,然後由時間小的loop到時間大的
如果該meeting中的參與人x, y中有一個和firstPerson是同一個根節點,則union
在每一個union操作後,將x, y皆放入res
同個時間若有多個meeting,則用一個while loop,不斷檢查該時間的所有x, y組合
直至res不再變動
以下是我的code,我一直想不透錯在哪,到第38個test case時fail了
class Solution(object):
def findAllPeople(self, n, meetings, firstPerson):
"""
:type n: int
:type meetings: List[List[int]]
:type firstPerson: int
:rtype: List[int]
"""
parent = {i: i for i in range(n)}
res = set()
res.add(0)
res.add(firstPerson)
def find(x):
if x != parent[x]:
parent[x] = find(parent[x])
return parent[x]
def union(a, b):
pa, pb = find(a), find(b)
if pa!=pb:
parent[pa] = pb
union(0, firstPerson)
hmap = collections.defaultdict(list)
for a, b, time in meetings:
hmap[time].append((a, b))
for time in sorted(hmap.keys()):
arr = hmap[time]
while True:
tmp = res
for a, b in arr:
if find(a) == find(firstPerson) or find(b) ==
find(firstPerson):
union(a,b)
res.add(a)
res.add(b)
if tmp == res:
break
return list(res)
感謝各位願意看完
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 108.254.89.199 (美國)
※ 文章網址: https://www.ptt.cc/bbs/Python/M.1638136732.A.669.html
推
11/29 08:38,
2年前
, 1F
11/29 08:38, 1F
→
11/29 08:38,
2年前
, 2F
11/29 08:38, 2F
推
11/29 09:25,
2年前
, 3F
11/29 09:25, 3F
→
11/29 09:27,
2年前
, 4F
11/29 09:27, 4F
→
11/29 09:33,
2年前
, 5F
11/29 09:33, 5F
推
11/29 09:33,
2年前
, 6F
11/29 09:33, 6F
→
11/29 09:34,
2年前
, 7F
11/29 09:34, 7F
推
11/29 09:37,
2年前
, 8F
11/29 09:37, 8F
→
11/29 09:48,
2年前
, 9F
11/29 09:48, 9F
推
11/29 09:58,
2年前
, 10F
11/29 09:58, 10F
→
11/29 10:00,
2年前
, 11F
11/29 10:00, 11F
→
11/29 10:01,
2年前
, 12F
11/29 10:01, 12F
推
11/29 10:09,
2年前
, 13F
11/29 10:09, 13F
推
11/29 10:36,
2年前
, 14F
11/29 10:36, 14F
推
11/29 10:43,
2年前
, 15F
11/29 10:43, 15F
→
11/29 10:43,
2年前
, 16F
11/29 10:43, 16F
推
11/29 10:45,
2年前
, 17F
11/29 10:45, 17F
推
11/29 10:50,
2年前
, 18F
11/29 10:50, 18F
→
11/29 10:50,
2年前
, 19F
11/29 10:50, 19F
→
11/29 12:39,
2年前
, 20F
11/29 12:39, 20F
→
11/29 12:55,
2年前
, 21F
11/29 12:55, 21F
Python 近期熱門文章
PTT數位生活區 即時熱門文章