結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | tamato |
提出日時 | 2020-01-31 21:27:16 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,291 bytes |
コンパイル時間 | 153 ms |
コンパイル使用メモリ | 82,164 KB |
実行使用メモリ | 78,696 KB |
最終ジャッジ日時 | 2024-09-17 07:08:39 |
合計ジャッジ時間 | 3,153 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
52,596 KB |
testcase_01 | AC | 35 ms
52,268 KB |
testcase_02 | AC | 35 ms
52,444 KB |
testcase_03 | AC | 35 ms
52,512 KB |
testcase_04 | AC | 32 ms
52,948 KB |
testcase_05 | AC | 32 ms
52,516 KB |
testcase_06 | AC | 32 ms
54,220 KB |
testcase_07 | AC | 32 ms
52,744 KB |
testcase_08 | AC | 32 ms
53,776 KB |
testcase_09 | AC | 32 ms
52,828 KB |
testcase_10 | WA | - |
testcase_11 | AC | 33 ms
52,580 KB |
testcase_12 | AC | 36 ms
52,600 KB |
testcase_13 | AC | 86 ms
76,400 KB |
testcase_14 | AC | 91 ms
76,080 KB |
testcase_15 | AC | 96 ms
76,108 KB |
testcase_16 | AC | 85 ms
76,252 KB |
testcase_17 | AC | 100 ms
76,200 KB |
testcase_18 | AC | 120 ms
76,696 KB |
testcase_19 | WA | - |
testcase_20 | AC | 146 ms
77,288 KB |
testcase_21 | AC | 170 ms
78,244 KB |
testcase_22 | AC | 191 ms
78,136 KB |
testcase_23 | AC | 178 ms
78,696 KB |
testcase_24 | AC | 151 ms
77,816 KB |
testcase_25 | AC | 173 ms
78,016 KB |
ソースコード
def main(): import sys input = sys.stdin.readline class UnionFind(): def __init__(self, n): self.n = n self.root = [-1] * (n + 1) self.rnk = [0] * (n + 1) def find_root(self, x): if self.root[x] < 0: return x else: self.root[x] = self.find_root(self.root[x]) return self.root[x] def unite(self, x, y): x = self.find_root(x) y = self.find_root(y) if x == y: return elif self.rnk[x] > self.rnk[y]: self.root[x] += self.root[y] self.root[y] = x else: self.root[y] += self.root[x] self.root[x] = y if self.rnk[x] == self.rnk[y]: self.rnk[y] += 1 def isSameGroup(self, x, y): return self.find_root(x) == self.find_root(y) def size(self, x): return -self.root[self.find_root(x)] N = int(input()) UF = UnionFind(N+1) for _ in range(N-1): u, v = map(int, input().split()) UF.unite(u, v) if UF.size(0) == N: print('Bob') else: print('Alice') if __name__ == '__main__': main()