結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | aaaaaaaaaa2230 |
提出日時 | 2022-04-16 13:19:32 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 261 ms / 2,000 ms |
コード長 | 1,015 bytes |
コンパイル時間 | 206 ms |
コンパイル使用メモリ | 82,436 KB |
実行使用メモリ | 79,412 KB |
最終ジャッジ日時 | 2024-06-07 13:16:07 |
合計ジャッジ時間 | 4,053 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,732 KB |
testcase_01 | AC | 38 ms
52,464 KB |
testcase_02 | AC | 37 ms
52,496 KB |
testcase_03 | AC | 36 ms
52,960 KB |
testcase_04 | AC | 37 ms
52,504 KB |
testcase_05 | AC | 38 ms
52,652 KB |
testcase_06 | AC | 36 ms
53,484 KB |
testcase_07 | AC | 38 ms
52,780 KB |
testcase_08 | AC | 38 ms
53,140 KB |
testcase_09 | AC | 38 ms
53,480 KB |
testcase_10 | AC | 38 ms
53,696 KB |
testcase_11 | AC | 38 ms
53,304 KB |
testcase_12 | AC | 39 ms
53,132 KB |
testcase_13 | AC | 116 ms
77,252 KB |
testcase_14 | AC | 115 ms
76,636 KB |
testcase_15 | AC | 115 ms
76,736 KB |
testcase_16 | AC | 111 ms
76,508 KB |
testcase_17 | AC | 125 ms
77,244 KB |
testcase_18 | AC | 134 ms
77,184 KB |
testcase_19 | AC | 178 ms
77,664 KB |
testcase_20 | AC | 204 ms
78,512 KB |
testcase_21 | AC | 232 ms
79,048 KB |
testcase_22 | AC | 261 ms
79,412 KB |
testcase_23 | AC | 229 ms
78,828 KB |
testcase_24 | AC | 203 ms
78,768 KB |
testcase_25 | AC | 226 ms
78,416 KB |
ソースコード
class Unionfind: def __init__(self,n): self.uf = [-1]*n def find(self,x): if self.uf[x] < 0: return x else: self.uf[x] = self.find(self.uf[x]) return self.uf[x] def same(self,x,y): return self.find(x) == self.find(y) def union(self,x,y): x = self.find(x) y = self.find(y) if x == y: return False if self.uf[x] > self.uf[y]: x,y = y,x self.uf[x] += self.uf[y] self.uf[y] = x return True def size(self,x): x = self.find(x) return -self.uf[x] n = int(input()) uf = Unionfind(n) count = [0]*n for _ in range(n-1): u,v = map(int,input().split()) uf.union(u,v) count[u] += 1 count[v] += 1 if uf.size(0) == n: print("Bob") exit() s = 0 for i in range(n): if uf.find(i) == i: s += 1 if count[i] not in [0,2]: print("Alice") exit() print("Bob" if s == 2 else "Alice")