結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | konchanksu |
提出日時 | 2020-04-15 17:41:06 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 771 ms / 2,000 ms |
コード長 | 1,217 bytes |
コンパイル時間 | 336 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 37,008 KB |
最終ジャッジ日時 | 2024-10-01 18:56:26 |
合計ジャッジ時間 | 6,488 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,880 KB |
testcase_01 | AC | 30 ms
11,008 KB |
testcase_02 | AC | 29 ms
10,880 KB |
testcase_03 | AC | 30 ms
11,008 KB |
testcase_04 | AC | 30 ms
11,008 KB |
testcase_05 | AC | 29 ms
11,008 KB |
testcase_06 | AC | 29 ms
11,008 KB |
testcase_07 | AC | 31 ms
11,008 KB |
testcase_08 | AC | 30 ms
10,880 KB |
testcase_09 | AC | 30 ms
11,008 KB |
testcase_10 | AC | 29 ms
10,880 KB |
testcase_11 | AC | 31 ms
11,008 KB |
testcase_12 | AC | 31 ms
11,008 KB |
testcase_13 | AC | 88 ms
13,312 KB |
testcase_14 | AC | 88 ms
13,184 KB |
testcase_15 | AC | 86 ms
13,312 KB |
testcase_16 | AC | 86 ms
13,184 KB |
testcase_17 | AC | 91 ms
13,184 KB |
testcase_18 | AC | 217 ms
18,432 KB |
testcase_19 | AC | 223 ms
18,176 KB |
testcase_20 | AC | 363 ms
22,788 KB |
testcase_21 | AC | 560 ms
28,164 KB |
testcase_22 | AC | 736 ms
34,700 KB |
testcase_23 | AC | 771 ms
36,736 KB |
testcase_24 | AC | 724 ms
37,008 KB |
testcase_25 | AC | 769 ms
36,616 KB |
ソースコード
class union_find(): def __init__(self, num): self.parents = [-1 for i in range(n)] def find(self, x): if self.parents[x] < 0: return x 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 def group_count(self): return len(self.roots()) def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] n = int(input()) dicts = {i:[] for i in range(n)} lists = [-1 for i in range(n)] a = union_find(n) for i in range(n - 1): te, mp = map(int, input().split()) dicts[te] += [mp] dicts[mp] += [te] for i in range(n): for j in dicts[i]: if j > i: a.union(i, j) if a.group_count() < 2: print('Bob') elif a.group_count() > 2: print('Alice') else: if len(list(filter(lambda x:len(x)==2, dicts.values()))) == n - 1: print('Bob') else: print('Alice')