結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-01 23:09:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 909 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 79,576 KB
最終ジャッジ日時 2024-10-01 23:09:16
合計ジャッジ時間 4,047 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,888 KB
testcase_01 AC 35 ms
53,916 KB
testcase_02 AC 38 ms
53,364 KB
testcase_03 AC 35 ms
53,008 KB
testcase_04 AC 35 ms
52,984 KB
testcase_05 AC 40 ms
53,128 KB
testcase_06 AC 36 ms
53,164 KB
testcase_07 AC 37 ms
52,812 KB
testcase_08 AC 36 ms
52,820 KB
testcase_09 AC 39 ms
54,200 KB
testcase_10 WA -
testcase_11 AC 42 ms
52,688 KB
testcase_12 AC 42 ms
53,144 KB
testcase_13 AC 122 ms
77,416 KB
testcase_14 AC 117 ms
77,200 KB
testcase_15 AC 114 ms
77,064 KB
testcase_16 AC 111 ms
77,148 KB
testcase_17 AC 123 ms
76,972 KB
testcase_18 AC 146 ms
77,888 KB
testcase_19 WA -
testcase_20 AC 209 ms
78,672 KB
testcase_21 AC 210 ms
79,336 KB
testcase_22 AC 253 ms
79,576 KB
testcase_23 AC 213 ms
79,452 KB
testcase_24 AC 196 ms
79,472 KB
testcase_25 AC 208 ms
79,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n=1):
        self.parent = [i for i in range(n)]
        self.rank = [0] * n
    
    def find(self, x):
        if self.parent[x] == x:
            return x
        else:
            self.parent[x] = self.find(self.parent[x])
            return self.parent[x]
    
    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.parent[y] = x
    
    def is_same(self, x, y):
        return self.find(x) == self.find(y)


N = int(input())
uf = UnionFind(N)
for _ in range(N-1):
    u, v = map(int, input().split())
    uf.union(u, v)

if N <= 3:
    print('Bob')
    quit()

if len(set([uf.find(i) for i in range(N)])) == 1:
    print('Bob')
else:
    print('Alice')
0