結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー uni_pythonuni_python
提出日時 2020-08-13 23:09:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 2,572 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 78,928 KB
最終ジャッジ日時 2024-10-09 19:36:18
合計ジャッジ時間 4,303 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,704 KB
testcase_01 AC 37 ms
53,736 KB
testcase_02 AC 37 ms
52,880 KB
testcase_03 AC 37 ms
54,168 KB
testcase_04 AC 38 ms
53,692 KB
testcase_05 AC 38 ms
53,852 KB
testcase_06 AC 39 ms
53,572 KB
testcase_07 AC 39 ms
53,960 KB
testcase_08 AC 39 ms
54,576 KB
testcase_09 AC 38 ms
53,252 KB
testcase_10 AC 38 ms
53,936 KB
testcase_11 AC 37 ms
53,688 KB
testcase_12 AC 38 ms
53,572 KB
testcase_13 AC 92 ms
76,180 KB
testcase_14 AC 101 ms
77,252 KB
testcase_15 AC 101 ms
76,300 KB
testcase_16 AC 93 ms
76,356 KB
testcase_17 AC 101 ms
77,044 KB
testcase_18 AC 114 ms
76,668 KB
testcase_19 AC 139 ms
77,448 KB
testcase_20 AC 169 ms
77,284 KB
testcase_21 AC 197 ms
78,872 KB
testcase_22 AC 194 ms
78,928 KB
testcase_23 AC 176 ms
77,976 KB
testcase_24 AC 155 ms
77,716 KB
testcase_25 AC 172 ms
77,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

def main():
    ################
    class UnionFind():
        """
        parents : 親要素(findしない場合は根ではないことの注意),根の場合は"-(要素数)"
        find(x):要素xの属するグループの根を返す
        size(x):要素xの属するグループの要素数を返す
        same(x,y):x,yが同じグループに属しているか返す
        重いかも!  members(x):要素xが属するグループに属する要素をリストで返す
        roots:全ての根の要素を返す
        group_count():グループの数を返す
        重いかも! all_group_members():{根要素:[そのグループに含まれる要素のリスト]}の辞書を返す
        """
        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())

        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())

    ################
    N=I()
    uf=UnionFind(N)
    D=[0]*N
    for i in range(N-1):
        u,v=MI()
        uf.union(u,v)
        D[u]+=1
        D[v]+=1
        
    g=uf.group_count()
    
    if g==1:
        print("Bob")
    elif g>=3:
        print("Alice")
    else:
        if 1 in D:
            print("Alice")
        else:
            print("Bob")




main()
0