結果
問題 | No.2290 UnUnion Find |
ユーザー | hir355 |
提出日時 | 2023-05-05 21:33:26 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,531 bytes |
コンパイル時間 | 417 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 204,900 KB |
最終ジャッジ日時 | 2024-11-23 06:14:56 |
合計ジャッジ時間 | 33,613 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
57,600 KB |
testcase_01 | AC | 42 ms
154,880 KB |
testcase_02 | AC | 341 ms
103,296 KB |
testcase_03 | TLE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 525 ms
114,152 KB |
testcase_21 | TLE | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 579 ms
110,808 KB |
testcase_25 | WA | - |
testcase_26 | AC | 560 ms
112,684 KB |
testcase_27 | AC | 693 ms
113,120 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | TLE | - |
testcase_31 | AC | 658 ms
110,396 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 566 ms
114,300 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 672 ms
112,884 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 716 ms
109,644 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
ソースコード
class UnionFind: def __init__(self, n): self.par = [i for i in range(n+1)] self.rank = [0] * (n + 1) self.size = [1] * (n + 1) def find(self, x): if self.par[x] == x: return x else: self.par[x] = self.find(self.par[x]) return self.par[x] def unite(self, x, y): x = self.find(x) y = self.find(y) if x == y: return if self.rank[x] < self.rank[y]: self.par[x] = y self.size[y] += self.size[x] else: self.par[y] = x self.size[x] += self.size[y] if self.rank[x] == self.rank[y]: self.rank[x] += 1 def same_check(self, x, y): return self.find(x) == self.find(y) n, q = map(int, input().split()) que = [list(map(int, input().split())) for _ in range(q)] uf = UnionFind(n) uf2 = UnionFind(n) for i in range(q): if que[i][0] == 1: uf.unite(que[i][1] - 1, que[i][2] - 1) if uf.size[uf.find(0)] == n: for i in range(n): if not uf2.same_check(0, i): x = i else: for i in range(n): if not uf2.same_check(0, i): x = i uf = UnionFind(n) for i in range(q): if que[i][0] == 1: uf.unite(que[i][1] - 1, que[i][2] - 1) else: if uf.same_check(que[i][1] - 1, 0): if uf.same_check(que[i][1] - 1, x): print(-1) else: print(x + 1) else: print(1)