結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | 💕💖💞 |
提出日時 | 2020-04-01 14:42:25 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 834 bytes |
コンパイル時間 | 88 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 13,056 KB |
最終ジャッジ日時 | 2024-06-26 20:50:56 |
合計ジャッジ時間 | 4,711 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
10,752 KB |
testcase_01 | AC | 28 ms
10,624 KB |
testcase_02 | AC | 29 ms
10,624 KB |
testcase_03 | AC | 29 ms
10,752 KB |
testcase_04 | AC | 30 ms
10,752 KB |
testcase_05 | AC | 29 ms
10,624 KB |
testcase_06 | AC | 30 ms
10,752 KB |
testcase_07 | AC | 29 ms
10,624 KB |
testcase_08 | AC | 30 ms
10,880 KB |
testcase_09 | AC | 29 ms
10,752 KB |
testcase_10 | WA | - |
testcase_11 | AC | 30 ms
10,752 KB |
testcase_12 | AC | 31 ms
10,752 KB |
testcase_13 | AC | 66 ms
11,136 KB |
testcase_14 | AC | 66 ms
10,752 KB |
testcase_15 | AC | 65 ms
10,880 KB |
testcase_16 | AC | 65 ms
11,008 KB |
testcase_17 | AC | 66 ms
11,136 KB |
testcase_18 | AC | 140 ms
11,264 KB |
testcase_19 | WA | - |
testcase_20 | AC | 208 ms
11,904 KB |
testcase_21 | AC | 304 ms
12,544 KB |
testcase_22 | AC | 388 ms
13,056 KB |
testcase_23 | AC | 399 ms
12,672 KB |
testcase_24 | AC | 400 ms
12,416 KB |
testcase_25 | AC | 394 ms
12,416 KB |
ソースコード
class UnionFind: def __init__(self, n): self.n = n self.parents = [-1] * n def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x == y: return if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x n = int(input()) uf = UnionFind(n) for i in range(n-1): a, b = map(int, input().split()) uf.union(a,b) # print(uf.parents) # print(uf.parents) cluster_num = sum([1 for p in uf.parents if p < 0]) # print(cluster_num) if cluster_num >= 2: print("Alice") else: print("Bob")