結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー s_shohei
提出日時 2020-04-11 20:51:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 319 ms / 2,000 ms
コード長 1,390 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 88,960 KB
最終ジャッジ日時 2024-09-19 11:08:16
合計ジャッジ時間 5,122 ms
ジャッジサーバーID
(参考情報)
judge4 / 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
    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 < 0]
    def group_count(self):
        return len(self.roots())

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

link = [[] for _ in range(n)]
for i in range(n-1):
    tmp = list(map(int,input().split()))
    link[tmp[0]].append(tmp[1])
    link[tmp[1]].append(tmp[0])
    uf.union(tmp[0],tmp[1])

if uf.group_count() == 1:
    print("Bob")
    exit()
if uf.group_count() > 2:
    print("Alice")
    exit()


for i in range(len(link)):
    if len(link[i])!=0 and len(link[i])!=2:
        print("Alice")
        exit()
print("Bob")
0