685. Redundant Connection II
Read the full problem statement on LeetCode.
Difficulty: hard Acceptance: 35% Topics: Depth-First Search, Breadth-First Search, Union Find, Graph
View full problem on LeetCode Reading material
Reference solution (spoiler · python)
# Time: O(nlog*n) ~= O(n), n is the length of the positions
# Space: O(n)
class UnionFind(object):
def __init__(self, n):
self.set = range(n)
def find_set(self, x):
if self.set[x] != x:
self.set[x] = self.find_set(self.set[x]) # path compression.
return self.set[x]
def union_set(self, x, y):
x_root, y_root = map(self.find_set, (x, y))
if x_root == y_root:
return False
self.set[min(x_root, y_root)] = max(x_root, y_root)
return True
class Solution(object):
def findRedundantDirectedConnection(self, edges):
"""
:type edges: List[List[int]]
:rtype: List[int]
"""
cand1, cand2 = [], []
parent = {}
for edge in edges:
if edge[1] not in parent:
parent[edge[1]] = edge[0]
else:
cand1 = [parent[edge[1]], edge[1]]
cand2 = edge
union_find = UnionFind(len(edges)+1)
for edge in edges:
if edge == cand2:
continue
if not union_find.union_set(*edge):
return cand1 if cand2 else edge
return cand2
Solution from kamyu104/LeetCode-Solutions · MIT
Similar questions