結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-01 23:05:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 869 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 79,916 KB
最終ジャッジ日時 2024-10-01 23:06:01
合計ジャッジ時間 5,130 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,616 KB
testcase_01 AC 52 ms
52,344 KB
testcase_02 AC 40 ms
53,076 KB
testcase_03 AC 41 ms
52,668 KB
testcase_04 AC 40 ms
52,456 KB
testcase_05 AC 39 ms
53,072 KB
testcase_06 AC 41 ms
53,536 KB
testcase_07 AC 41 ms
53,792 KB
testcase_08 AC 42 ms
53,264 KB
testcase_09 AC 41 ms
54,200 KB
testcase_10 WA -
testcase_11 AC 41 ms
54,608 KB
testcase_12 AC 40 ms
52,812 KB
testcase_13 AC 130 ms
77,508 KB
testcase_14 AC 127 ms
77,316 KB
testcase_15 AC 127 ms
77,540 KB
testcase_16 AC 133 ms
77,224 KB
testcase_17 AC 136 ms
77,480 KB
testcase_18 AC 167 ms
77,972 KB
testcase_19 WA -
testcase_20 AC 222 ms
78,216 KB
testcase_21 AC 258 ms
79,456 KB
testcase_22 AC 331 ms
79,704 KB
testcase_23 AC 258 ms
79,916 KB
testcase_24 AC 239 ms
79,404 KB
testcase_25 AC 253 ms
79,736 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 len(set([uf.find(i) for i in range(N)])) == 1:
    print('Bob')
else:
    print('Alice')
0