結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー stngstng
提出日時 2022-08-16 21:01:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,173 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 91,504 KB
最終ジャッジ日時 2024-10-03 14:02:40
合計ジャッジ時間 4,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,704 KB
testcase_01 AC 35 ms
53,104 KB
testcase_02 AC 34 ms
53,108 KB
testcase_03 AC 35 ms
54,432 KB
testcase_04 AC 35 ms
53,908 KB
testcase_05 AC 33 ms
53,292 KB
testcase_06 AC 32 ms
53,068 KB
testcase_07 AC 33 ms
52,752 KB
testcase_08 AC 37 ms
53,492 KB
testcase_09 AC 34 ms
54,056 KB
testcase_10 WA -
testcase_11 AC 34 ms
53,612 KB
testcase_12 AC 34 ms
53,980 KB
testcase_13 AC 137 ms
78,484 KB
testcase_14 AC 130 ms
78,216 KB
testcase_15 AC 126 ms
78,268 KB
testcase_16 AC 139 ms
78,828 KB
testcase_17 AC 150 ms
78,828 KB
testcase_18 AC 177 ms
80,880 KB
testcase_19 WA -
testcase_20 AC 232 ms
84,592 KB
testcase_21 AC 287 ms
87,764 KB
testcase_22 AC 362 ms
91,160 KB
testcase_23 AC 335 ms
90,636 KB
testcase_24 AC 296 ms
91,504 KB
testcase_25 AC 357 ms
90,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.par = [i for i in range(n+1)]
        self.rank = [0] * (n+1)
        self.size = [1 for _ in range(n+1)]
    # 検索
    def find(self, x):
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]
    # 併合
    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if self.rank[x] < self.rank[y]:
            self.par[x] = y
            self.size[y] += self.size[x]
        else:
            self.par[y] = x
            self.size[x] += self.size[y]
        if self.rank[x] == self.rank[y]:
            self.rank[x] += 1
    # 同じ集合に属するか判定
    def same_check(self, x, y):
        return self.find(x) == self.find(y)

n = int(input())
uv = [[] for i in range(n)]
ki = UnionFind(n+1)
for i in range(n-1):
    u,v = map(int,input().split())
    uv[u].append(v)
    uv[v].append(u)
    if not ki.same_check(u,v):
        ki.union(u,v)

#idx = ki.find(0)
for i in range(n):
    if not ki.same_check(0,i):
    #if ki.find(i) != idx:
        print("Alice")
        exit()
print("Bob")
0