結果
問題 | No.556 仁義なきサルたち |
ユーザー | 👑 rin204 |
提出日時 | 2022-07-04 16:16:20 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 153 ms / 2,000 ms |
コード長 | 1,480 bytes |
コンパイル時間 | 298 ms |
コンパイル使用メモリ | 82,396 KB |
実行使用メモリ | 77,348 KB |
最終ジャッジ日時 | 2024-12-14 06:58:46 |
合計ジャッジ時間 | 2,965 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
53,000 KB |
testcase_01 | AC | 42 ms
53,240 KB |
testcase_02 | AC | 40 ms
53,508 KB |
testcase_03 | AC | 40 ms
53,696 KB |
testcase_04 | AC | 40 ms
54,060 KB |
testcase_05 | AC | 42 ms
53,208 KB |
testcase_06 | AC | 42 ms
54,560 KB |
testcase_07 | AC | 43 ms
55,608 KB |
testcase_08 | AC | 44 ms
55,316 KB |
testcase_09 | AC | 51 ms
63,392 KB |
testcase_10 | AC | 57 ms
65,544 KB |
testcase_11 | AC | 65 ms
68,820 KB |
testcase_12 | AC | 65 ms
67,736 KB |
testcase_13 | AC | 60 ms
67,196 KB |
testcase_14 | AC | 104 ms
76,880 KB |
testcase_15 | AC | 121 ms
77,316 KB |
testcase_16 | AC | 97 ms
76,816 KB |
testcase_17 | AC | 134 ms
77,348 KB |
testcase_18 | AC | 153 ms
77,116 KB |
testcase_19 | AC | 89 ms
76,736 KB |
testcase_20 | AC | 91 ms
76,568 KB |
testcase_21 | AC | 89 ms
76,752 KB |
ソースコード
class UnionFind: def __init__(self, n): self.n = n self.parents = [-1] * n self.group = n def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x > y: x, y = y, x if x == y: return self.group -= 1 if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x def size(self, x): return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): return self.group def all_group_members(self): dic = {r:[] for r in self.roots()} for i in range(self.n): dic[self.find(i)].append(i) return dic def __str__(self): return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots()) n, m = map(int, input().split()) UF = UnionFind(n) for _ in range(m): a, b = map(int, input().split()) UF.union(a - 1, b - 1) for i in range(n): print(UF.find(i) + 1)