[問題] leetcode 2029 (Hard) 的問題

作者: VivianAnn (薇薇安安)   2021-11-29 05:58:49
不知這裡有沒有高手有參加這週的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)
感謝各位願意看完
作者: s0914714 (YA)   2021-11-29 08:38:00
我猜是find(a) == find(firstPerson) or find(b)...這行有可能迭代還沒完成但是tmp等於res我是用一個set紀錄find(a), find(b)跟find(firstPerson)每次循環結束檢查set長度,如果沒變就能跳出
作者: VivianAnn (薇薇安安)   2021-11-29 09:33:00
問下,有可能迭代沒完成但res = tmp 嗎?
作者: s0914714 (YA)   2021-11-29 09:33:00
後來find的節點有機會讓之前find過的節點變更parent最簡單的方式就是你的while True改成count跑個5次試試不要tmp == res就break
作者: VivianAnn (薇薇安安)   2021-11-29 09:48:00
查出問題了,tmp = res.copy()才對,不過會TLE
作者: s0914714 (YA)   2021-11-29 09:58:00
都忘了set也是淺拷貝XD你的res會越來越大 TLE很正常吧改成記長度之類的有可能迭代沒完成但res = tmp 嗎? =>我想錯了 這不可能
作者: cuteSquirrel (松鼠)   2021-11-29 10:36:00
提示: 同一個時段舉行的meeting仍然會洩漏秘密提供一組測資,幫助你用來除錯。http://codepad.org/RmBe4P91留意這段敘述 https://i.imgur.com/rycNcnU.png
作者: s0914714 (YA)   2021-11-29 10:50:00
不過原PO會把答案加到res 後面的人知道秘密就會加入res所以res就跟一開始不一樣
作者: VivianAnn (薇薇安安)   2021-11-29 12:39:00
謝謝,我已經懂了這題蠻好的,值得一做

Links booklink

Contact Us: admin [ a t ] ucptt.com