結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー yuly3yuly3
提出日時 2020-05-01 17:31:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 250 ms / 2,000 ms
コード長 1,890 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 88,064 KB
最終ジャッジ日時 2024-06-06 18:17:09
合計ジャッジ時間 4,605 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 39 ms
52,480 KB
testcase_09 AC 38 ms
52,736 KB
testcase_10 AC 39 ms
52,352 KB
testcase_11 AC 38 ms
52,480 KB
testcase_12 AC 40 ms
52,480 KB
testcase_13 AC 106 ms
77,056 KB
testcase_14 AC 109 ms
76,800 KB
testcase_15 AC 112 ms
76,800 KB
testcase_16 AC 105 ms
77,696 KB
testcase_17 AC 115 ms
77,696 KB
testcase_18 AC 128 ms
79,488 KB
testcase_19 AC 155 ms
80,384 KB
testcase_20 AC 169 ms
82,052 KB
testcase_21 AC 214 ms
86,016 KB
testcase_22 AC 231 ms
87,808 KB
testcase_23 AC 234 ms
87,808 KB
testcase_24 AC 200 ms
88,064 KB
testcase_25 AC 250 ms
87,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 7)
rl = sys.stdin.readline


class UnionFind:
    def __init__(self, n: int):
        self.n = n
        self.parents = [-1] * n
    
    def find(self, x: int):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]
    
    def union(self, x: int, y: int):
        x = self.find(x)
        y = self.find(y)
        
        if x == y:
            return
        if self.parents[y] < self.parents[x]:
            x, y = y, x
        
        self.parents[x] += self.parents[y]
        self.parents[y] = x
    
    def size(self, x: int):
        return -self.parents[self.find(x)]
    
    def same(self, x: int, y: int):
        return self.find(x) == self.find(y)
    
    def members(self, x: int):
        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())


def solve():
    N = int(rl())
    uf = UnionFind(N)
    graph = [[] for _ in range(N)]
    for _ in range(N - 1):
        u, v = map(int, rl().split())
        uf.union(u, v)
        graph[u].append(v)
        graph[v].append(u)
    
    g_cnt = uf.group_count()
    if g_cnt == 1:
        print('Bob')
    elif g_cnt == 2:
        bridge = False
        for children in graph:
            if len(children) == 1:
                bridge = True
                break
        print('Alice' if bridge else 'Bob')
    else:
        print('Alice')


if __name__ == '__main__':
    solve()
0