結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | Azumabashi |
提出日時 | 2020-04-27 09:59:13 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,036 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 13,056 KB |
最終ジャッジ日時 | 2024-11-21 05:04:19 |
合計ジャッジ時間 | 4,692 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,880 KB |
testcase_01 | AC | 29 ms
10,752 KB |
testcase_02 | AC | 29 ms
10,752 KB |
testcase_03 | AC | 29 ms
10,752 KB |
testcase_04 | AC | 29 ms
10,752 KB |
testcase_05 | AC | 28 ms
10,752 KB |
testcase_06 | AC | 29 ms
10,752 KB |
testcase_07 | AC | 29 ms
10,752 KB |
testcase_08 | AC | 30 ms
10,752 KB |
testcase_09 | AC | 29 ms
10,880 KB |
testcase_10 | WA | - |
testcase_11 | AC | 29 ms
10,752 KB |
testcase_12 | AC | 29 ms
10,752 KB |
testcase_13 | AC | 62 ms
11,008 KB |
testcase_14 | AC | 62 ms
10,880 KB |
testcase_15 | AC | 62 ms
11,008 KB |
testcase_16 | AC | 61 ms
11,136 KB |
testcase_17 | AC | 63 ms
11,008 KB |
testcase_18 | AC | 125 ms
11,520 KB |
testcase_19 | WA | - |
testcase_20 | AC | 189 ms
12,032 KB |
testcase_21 | AC | 287 ms
12,672 KB |
testcase_22 | AC | 352 ms
13,056 KB |
testcase_23 | AC | 371 ms
12,672 KB |
testcase_24 | AC | 358 ms
12,672 KB |
testcase_25 | AC | 375 ms
12,672 KB |
ソースコード
class UnionFind: def __init__(self, node): self.parent = [-1 for _ in range(node)] def find(self, target): if self.parent[target] < 0: return target else: self.parent[target] = self.find(self.parent[target]) return self.parent[target] def is_same(self, x, y): return self.find(x) == self.find(y) def union(self, x, y): root_x = self.find(x) root_y = self.find(y) if root_x == root_y: return if self.parent[root_x] > self.parent[root_y]: root_x, root_y = root_y, root_x self.parent[root_x] += self.parent[root_y] self.parent[root_y] = root_x def get_size(self, x): return -self.parent[self.find(x)] def main(): islands = int(input()) uf = UnionFind(islands) for _ in range(islands - 1): u, v = map(int, input().split()) uf.union(u, v) print("Bob" if uf.get_size(0) == islands else "Alice") if __name__ == '__main__': main()