結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | neterukun |
提出日時 | 2020-02-01 20:55:11 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,264 bytes |
コンパイル時間 | 212 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 88,724 KB |
最終ジャッジ日時 | 2024-09-18 20:17:53 |
合計ジャッジ時間 | 3,855 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
51,712 KB |
testcase_01 | AC | 41 ms
51,712 KB |
testcase_02 | AC | 48 ms
52,224 KB |
testcase_03 | AC | 43 ms
51,712 KB |
testcase_04 | AC | 44 ms
51,712 KB |
testcase_05 | AC | 44 ms
51,968 KB |
testcase_06 | AC | 42 ms
52,352 KB |
testcase_07 | AC | 49 ms
52,608 KB |
testcase_08 | AC | 46 ms
52,736 KB |
testcase_09 | AC | 44 ms
52,224 KB |
testcase_10 | WA | - |
testcase_11 | AC | 38 ms
52,864 KB |
testcase_12 | AC | 37 ms
52,480 KB |
testcase_13 | AC | 113 ms
77,568 KB |
testcase_14 | AC | 118 ms
78,208 KB |
testcase_15 | AC | 119 ms
77,696 KB |
testcase_16 | AC | 110 ms
77,184 KB |
testcase_17 | AC | 127 ms
77,824 KB |
testcase_18 | AC | 148 ms
80,384 KB |
testcase_19 | WA | - |
testcase_20 | AC | 189 ms
83,200 KB |
testcase_21 | AC | 218 ms
85,632 KB |
testcase_22 | AC | 236 ms
88,724 KB |
testcase_23 | AC | 222 ms
88,320 KB |
testcase_24 | AC | 205 ms
88,064 KB |
testcase_25 | AC | 217 ms
88,192 KB |
ソースコード
class UnionFind: def __init__(self, n): self.parent = [-1] * n self.cnt = n def root(self, x): """頂点xの根を求める""" if self.parent[x] < 0: return x else: self.parent[x] = self.root(self.parent[x]) return self.parent[x] def merge(self, x, y): """頂点xを含む集合と頂点y含む集合を結合する""" x = self.root(x) y = self.root(y) if x != y: if self.parent[x] > self.parent[y]: x, y = y, x self.parent[x] += self.parent[y] self.parent[y] = x self.cnt -= 1 def is_same(self, x, y): """頂点xと頂点yが同じ集合に属するかどうかを返す""" return self.root(x) == self.root(y) def get_size(self, x): """頂点xを含む集合の要素数を返す""" return -self.parent[self.root(x)] def get_cnt(self): """木の個数を返す""" return self.cnt n = int(input()) info = [list(map(int, input().split())) for i in range(n - 1)] uf = UnionFind(n) for i in range(n - 1): a, b = info[i] uf.merge(a, b) if uf.get_cnt() == 1: print("Bob") else: print("Alice")