結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー s_shoheis_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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,936 KB
testcase_01 AC 35 ms
53,488 KB
testcase_02 AC 34 ms
52,820 KB
testcase_03 AC 33 ms
53,340 KB
testcase_04 AC 35 ms
53,688 KB
testcase_05 AC 34 ms
52,616 KB
testcase_06 AC 36 ms
54,136 KB
testcase_07 AC 35 ms
53,856 KB
testcase_08 AC 38 ms
54,468 KB
testcase_09 AC 35 ms
54,192 KB
testcase_10 AC 36 ms
53,540 KB
testcase_11 AC 35 ms
53,564 KB
testcase_12 AC 36 ms
53,668 KB
testcase_13 AC 124 ms
77,880 KB
testcase_14 AC 134 ms
78,116 KB
testcase_15 AC 126 ms
78,336 KB
testcase_16 AC 126 ms
77,756 KB
testcase_17 AC 126 ms
77,824 KB
testcase_18 AC 157 ms
80,384 KB
testcase_19 AC 180 ms
81,152 KB
testcase_20 AC 215 ms
82,944 KB
testcase_21 AC 268 ms
86,016 KB
testcase_22 AC 306 ms
88,448 KB
testcase_23 AC 319 ms
88,448 KB
testcase_24 AC 284 ms
88,960 KB
testcase_25 AC 312 ms
88,704 KB
権限があれば一括ダウンロードができます

ソースコード

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