結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | TakoKurage |
提出日時 | 2020-01-31 23:25:04 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 301 ms / 2,000 ms |
コード長 | 981 bytes |
コンパイル時間 | 123 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 29,796 KB |
最終ジャッジ日時 | 2024-09-17 10:45:54 |
合計ジャッジ時間 | 3,349 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
10,880 KB |
testcase_01 | AC | 26 ms
10,880 KB |
testcase_02 | AC | 27 ms
10,880 KB |
testcase_03 | AC | 25 ms
11,008 KB |
testcase_04 | AC | 25 ms
10,880 KB |
testcase_05 | AC | 26 ms
11,008 KB |
testcase_06 | AC | 25 ms
10,880 KB |
testcase_07 | AC | 26 ms
11,008 KB |
testcase_08 | AC | 25 ms
10,880 KB |
testcase_09 | AC | 25 ms
11,008 KB |
testcase_10 | AC | 26 ms
11,008 KB |
testcase_11 | AC | 25 ms
10,880 KB |
testcase_12 | AC | 26 ms
11,008 KB |
testcase_13 | AC | 48 ms
12,928 KB |
testcase_14 | AC | 46 ms
12,800 KB |
testcase_15 | AC | 47 ms
12,800 KB |
testcase_16 | AC | 50 ms
12,800 KB |
testcase_17 | AC | 48 ms
12,928 KB |
testcase_18 | AC | 100 ms
16,768 KB |
testcase_19 | AC | 94 ms
16,768 KB |
testcase_20 | AC | 142 ms
20,564 KB |
testcase_21 | AC | 217 ms
25,632 KB |
testcase_22 | AC | 278 ms
29,784 KB |
testcase_23 | AC | 301 ms
29,796 KB |
testcase_24 | AC | 297 ms
29,672 KB |
testcase_25 | AC | 301 ms
29,672 KB |
ソースコード
class UnionFind:def __init__(self, size):self.data = [-1] * sizedef find(self, x):if self.data[x] < 0:return xelse:self.data[x] = self.find(self.data[x])return self.data[x]def union(self, x, y):x, y = self.find(x), self.find(y)if x != y:if self.data[y] < self.data[x]:x, y = y, xself.data[x] += self.data[y]self.data[y] = xreturn (x != y)def same(self, x, y):return (self.find(x) == self.find(y))def size(self, x):return -self.data[self.find(x)]N, *AB = map(int, open(0).read().split())uf = UnionFind(N)E = [[] for _ in range(N)]for a, b in zip(*[iter(AB)] * 2):E[a].append(b)E[b].append(a)uf.union(a, b)one = sum(1 for e in E if len(e) == 1)C = len(set(uf.find(i) for i in range(N)))if C == 1 or (C == 2 and one == 0):print("Bob")else:print("Alice")