树模板:并查集 Ian 2023-04-01 约 47 字 预计阅读 1 分钟 次阅读 目录 并查集 并查集 1 2 3 4 5 6 7 8 9 10 11 12 def find(x): if f[x]!=x: f[x] = find(f[x]) return f[x] def union(x,y): fx, fy = find(x),find(y) if fx != fy: if sz[fx]>sz[fy]: fx, fy = fy, fx f[fx] = fy sz[fy] += sz[fx] Please enable JavaScript to view the comments powered by Valine.