結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー 💕💖💞
提出日時 2020-04-01 14:54:05
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 444 ms / 2,000 ms
コード長 898 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-06-26 21:06:43
合計ジャッジ時間 4,834 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #


class UnionFind:
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n

    def find(self, x):
        if self.parents[x] < 0:
            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 x == y:
            return

        if self.parents[x] > self.parents[y]:
            x, y = y, x

        self.parents[x] += self.parents[y]
        self.parents[y] = x

n = int(input())
uf = UnionFind(n)

edges = [0]*n
for i in range(n-1):
    a, b = map(int, input().split())
    uf.union(a,b)
    edges[a] += 1
    edges[b] += 1

cluster_num = sum([1 for p in uf.parents if p < 0])
if 1 in edges:
    cluster_num += 1
if cluster_num != 1:
    cluster_num -= 1
if cluster_num == 1:
    print("Bob")
else:
    print("Alice")

0