結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー yomo3yomo3
提出日時 2020-03-20 13:28:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 431 ms / 2,000 ms
コード長 821 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 15,616 KB
最終ジャッジ日時 2024-05-08 03:56:10
合計ジャッジ時間 4,443 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 26 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 62 ms
11,264 KB
testcase_14 AC 68 ms
11,392 KB
testcase_15 AC 64 ms
11,392 KB
testcase_16 AC 63 ms
11,264 KB
testcase_17 AC 62 ms
11,264 KB
testcase_18 AC 134 ms
12,288 KB
testcase_19 AC 136 ms
12,288 KB
testcase_20 AC 210 ms
13,184 KB
testcase_21 AC 308 ms
14,464 KB
testcase_22 AC 381 ms
15,360 KB
testcase_23 AC 431 ms
15,616 KB
testcase_24 AC 401 ms
15,616 KB
testcase_25 AC 428 ms
15,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

class UnionFind:
    def __init__(self, n):
        self.parent = [i for i in range(n)]
    def find(self, x):
        if self.parent[x] == x:
            return x
        self.parent[x] = self.find(self.parent[x])
        return self.parent[x]
    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        self.parent[x] = y

def main():
    N = int(input())
    deg = [0] * N
    uf = UnionFind(N)
    for _ in range(N-1):
        u, v = map(int, input().split())
        deg[u] += 1
        deg[v] += 1
        uf.union(u, v)
    s = set(uf.find(i) for i in range(N))
    sets = len(s)
    dc = Counter(deg)
    bob = (sets == 1) or (sets == 2 and dc[0] == 1 and dc[2] == N - 1)
    print('Bob' if bob else 'Alice')

main()
0