結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-04-16 13:17:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 947 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 79,144 KB
最終ジャッジ日時 2024-06-07 13:13:40
合計ジャッジ時間 3,790 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,428 KB
testcase_01 AC 36 ms
52,876 KB
testcase_02 AC 37 ms
52,808 KB
testcase_03 AC 36 ms
53,300 KB
testcase_04 AC 36 ms
53,080 KB
testcase_05 AC 36 ms
52,684 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 38 ms
53,472 KB
testcase_09 AC 39 ms
54,612 KB
testcase_10 AC 38 ms
53,472 KB
testcase_11 AC 37 ms
53,232 KB
testcase_12 AC 38 ms
53,692 KB
testcase_13 AC 116 ms
76,804 KB
testcase_14 AC 113 ms
77,024 KB
testcase_15 AC 114 ms
76,388 KB
testcase_16 AC 109 ms
76,948 KB
testcase_17 AC 115 ms
76,948 KB
testcase_18 AC 136 ms
77,324 KB
testcase_19 AC 161 ms
77,496 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 223 ms
78,388 KB
testcase_24 AC 201 ms
78,536 KB
testcase_25 AC 220 ms
78,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Unionfind:
     
    def __init__(self,n):
        self.uf = [-1]*n
 
    def find(self,x):
        if self.uf[x] < 0:
            return x
        else:
            self.uf[x] = self.find(self.uf[x])
            return self.uf[x]
 
    def same(self,x,y):
        return self.find(x) == self.find(y)
 
    def union(self,x,y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return False
        if self.uf[x] > self.uf[y]:
            x,y = y,x
        self.uf[x] += self.uf[y]
        self.uf[y] = x
        return True
 
    def size(self,x):
        x = self.find(x)
        return -self.uf[x]

n = int(input())
uf = Unionfind(n)
count = [0]*n
for _ in range(n-1):
    u,v = map(int,input().split())
    uf.union(u,v)
    count[u] += 1
    count[v] += 1

if uf.size(0) == n:
    print("Bob")
    exit()

for i in range(n):
    if count[i] not in [0,2]:
        print("Alice")
        exit()
print("Bob")
0