結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー Shinya FujitaShinya Fujita
提出日時 2024-10-01 23:19:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 948 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 80,908 KB
最終ジャッジ日時 2024-10-01 23:19:16
合計ジャッジ時間 4,700 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,360 KB
testcase_01 AC 40 ms
52,804 KB
testcase_02 AC 39 ms
53,348 KB
testcase_03 AC 40 ms
52,128 KB
testcase_04 AC 40 ms
52,872 KB
testcase_05 AC 40 ms
52,340 KB
testcase_06 AC 40 ms
52,332 KB
testcase_07 AC 40 ms
54,212 KB
testcase_08 AC 42 ms
53,824 KB
testcase_09 AC 42 ms
53,252 KB
testcase_10 AC 43 ms
53,268 KB
testcase_11 AC 42 ms
53,336 KB
testcase_12 AC 42 ms
54,448 KB
testcase_13 AC 137 ms
77,120 KB
testcase_14 AC 137 ms
77,536 KB
testcase_15 AC 134 ms
77,724 KB
testcase_16 AC 131 ms
77,412 KB
testcase_17 AC 141 ms
77,180 KB
testcase_18 AC 173 ms
77,792 KB
testcase_19 AC 222 ms
78,172 KB
testcase_20 AC 231 ms
78,764 KB
testcase_21 AC 269 ms
79,864 KB
testcase_22 AC 301 ms
80,908 KB
testcase_23 AC 290 ms
80,408 KB
testcase_24 AC 240 ms
80,476 KB
testcase_25 AC 260 ms
80,752 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)
D = [0] * N
for _ in range(N-1):
    u, v = map(int, input().split())
    uf.union(u, v)
    D[u] += 1
    D[v] += 1

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