結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | kohei2019 |
提出日時 | 2021-02-04 14:29:20 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 382 ms / 2,000 ms |
コード長 | 1,722 bytes |
コンパイル時間 | 208 ms |
コンパイル使用メモリ | 82,532 KB |
実行使用メモリ | 89,588 KB |
最終ジャッジ日時 | 2024-06-30 18:42:08 |
合計ジャッジ時間 | 5,085 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
54,940 KB |
testcase_01 | AC | 44 ms
54,876 KB |
testcase_02 | AC | 42 ms
54,268 KB |
testcase_03 | AC | 42 ms
55,076 KB |
testcase_04 | AC | 41 ms
55,852 KB |
testcase_05 | AC | 43 ms
54,808 KB |
testcase_06 | AC | 43 ms
54,836 KB |
testcase_07 | AC | 43 ms
55,128 KB |
testcase_08 | AC | 43 ms
56,496 KB |
testcase_09 | AC | 43 ms
56,264 KB |
testcase_10 | AC | 44 ms
55,012 KB |
testcase_11 | AC | 42 ms
55,800 KB |
testcase_12 | AC | 43 ms
54,984 KB |
testcase_13 | AC | 126 ms
78,652 KB |
testcase_14 | AC | 133 ms
78,132 KB |
testcase_15 | AC | 132 ms
78,660 KB |
testcase_16 | AC | 127 ms
78,560 KB |
testcase_17 | AC | 150 ms
78,204 KB |
testcase_18 | AC | 162 ms
80,464 KB |
testcase_19 | AC | 233 ms
81,580 KB |
testcase_20 | AC | 281 ms
83,936 KB |
testcase_21 | AC | 339 ms
86,772 KB |
testcase_22 | AC | 382 ms
89,588 KB |
testcase_23 | AC | 381 ms
89,468 KB |
testcase_24 | AC | 275 ms
89,308 KB |
testcase_25 | AC | 354 ms
88,060 KB |
ソースコード
#unionfind経路圧縮あり class UnionFind(): def __init__(self, n): self.n = n self.parents = list(range(n)) def find(self, x): if self.parents[x] == x: 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 self.parents[x] > self.parents[y]: x, y = y, x if x == y: return self.parents[y] = x def size(self, x): return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parents) if x == i] def group_count(self): return len(self.roots()) def all_group_members(self): return {r: self.members(r) for r in self.roots()} def __str__(self): return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots()) import sys import collections N = int(input()) #全連結すなわち木ならBob #N-1の円環ループ+1頂点ならBob #それ以外Alice lsg = [[] for i in range(N)] UF = UnionFind(N) for i in range(N-1): u,v = map(int,input().split()) lsg[u].append(v) lsg[v].append(u) UF.union(u,v) if len(UF.roots()) == 1: print('Bob') sys.exit() if len(UF.roots()) >= 3: print('Alice') sys.exit() lsn = [0]*(N) for i in range(N): lsn[i] = len(lsg[i]) if lsn.count(0) == 1 and lsn.count(2) == N-1: print('Bob') else: print('Alice')