結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | Kodai |
提出日時 | 2020-04-15 16:20:31 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 804 bytes |
コンパイル時間 | 109 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 19,156 KB |
最終ジャッジ日時 | 2024-10-01 18:48:24 |
合計ジャッジ時間 | 5,444 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
10,752 KB |
testcase_01 | AC | 32 ms
10,624 KB |
testcase_02 | AC | 32 ms
10,752 KB |
testcase_03 | AC | 31 ms
10,752 KB |
testcase_04 | WA | - |
testcase_05 | AC | 31 ms
10,624 KB |
testcase_06 | AC | 32 ms
10,624 KB |
testcase_07 | AC | 32 ms
10,624 KB |
testcase_08 | AC | 32 ms
10,624 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 33 ms
10,752 KB |
testcase_12 | AC | 32 ms
10,624 KB |
testcase_13 | AC | 87 ms
11,648 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 82 ms
11,776 KB |
testcase_17 | AC | 72 ms
11,392 KB |
testcase_18 | RE | - |
testcase_19 | WA | - |
testcase_20 | AC | 257 ms
15,012 KB |
testcase_21 | AC | 399 ms
16,228 KB |
testcase_22 | AC | 517 ms
19,156 KB |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
ソースコード
from collections import Counter N = int(input()) class UnionFind: def __init__(self, n): super().__init__() self.parent = [i for i in range(n)] def root(self, x): if self.parent[x] != x: return self.root(self.parent[x]) else: return x def unite(self, x, y): rx = self.root(x) ry = self.root(y) if rx != ry: self.parent[rx] = ry uni = UnionFind(N) temp_list = [0 for i in range(N)] for i in range(N-1): a, b = list(map(int, input().split())) uni.unite(b, a) temp_list[a] += 1 temp_list[b] += 1 # print(uni.parent) # print(temp_list) count = Counter(uni.parent) # print(count) if len(count) == 1: print("Bob") elif len(count) == 2: print("Bob") else: print("Alice")