結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | kohei2019 |
提出日時 | 2021-02-04 14:19:53 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,666 bytes |
コンパイル時間 | 180 ms |
コンパイル使用メモリ | 82,260 KB |
実行使用メモリ | 90,256 KB |
最終ジャッジ日時 | 2024-06-30 18:34:07 |
合計ジャッジ時間 | 5,539 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
54,136 KB |
testcase_01 | AC | 41 ms
55,132 KB |
testcase_02 | AC | 41 ms
55,740 KB |
testcase_03 | AC | 41 ms
55,424 KB |
testcase_04 | AC | 41 ms
55,024 KB |
testcase_05 | AC | 42 ms
55,924 KB |
testcase_06 | AC | 42 ms
54,796 KB |
testcase_07 | AC | 42 ms
55,184 KB |
testcase_08 | AC | 48 ms
55,852 KB |
testcase_09 | AC | 43 ms
54,960 KB |
testcase_10 | WA | - |
testcase_11 | AC | 43 ms
54,984 KB |
testcase_12 | AC | 44 ms
56,172 KB |
testcase_13 | AC | 130 ms
78,348 KB |
testcase_14 | AC | 136 ms
77,704 KB |
testcase_15 | AC | 133 ms
78,304 KB |
testcase_16 | AC | 129 ms
77,984 KB |
testcase_17 | AC | 148 ms
78,256 KB |
testcase_18 | AC | 163 ms
80,168 KB |
testcase_19 | WA | - |
testcase_20 | AC | 283 ms
83,696 KB |
testcase_21 | AC | 339 ms
87,000 KB |
testcase_22 | AC | 387 ms
90,256 KB |
testcase_23 | AC | 376 ms
89,100 KB |
testcase_24 | AC | 272 ms
88,964 KB |
testcase_25 | AC | 357 ms
87,944 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() lsn = [0]*(N+1) 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')