結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-29 15:42:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 469 ms / 2,000 ms
コード長 1,113 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,424 KB
最終ジャッジ日時 2024-06-10 14:56:10
合計ジャッジ時間 5,048 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 25 ms
10,880 KB
testcase_03 AC 26 ms
11,008 KB
testcase_04 AC 25 ms
11,008 KB
testcase_05 AC 25 ms
10,880 KB
testcase_06 AC 26 ms
10,880 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 26 ms
11,008 KB
testcase_09 AC 26 ms
11,008 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 28 ms
11,008 KB
testcase_13 AC 69 ms
11,904 KB
testcase_14 AC 70 ms
12,160 KB
testcase_15 AC 70 ms
12,160 KB
testcase_16 AC 66 ms
12,032 KB
testcase_17 AC 68 ms
12,032 KB
testcase_18 AC 145 ms
14,592 KB
testcase_19 AC 148 ms
14,720 KB
testcase_20 AC 227 ms
17,024 KB
testcase_21 AC 345 ms
20,608 KB
testcase_22 AC 452 ms
23,296 KB
testcase_23 AC 469 ms
23,296 KB
testcase_24 AC 443 ms
23,424 KB
testcase_25 AC 457 ms
23,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.n=n
        self.parent_size=[-1]*n
    def merge(self, a, b):
        x, y=self.leader(a), self.leader(b)
        if x == y: return 
        if abs(self.parent_size[x])<abs(self.parent_size[y]): x, y=y, x
        self.parent_size[x] += self.parent_size[y] 
        self.parent_size[y]=x
        return 
    def same(self, a, b):
        return self.leader(a) == self.leader(b)
    def leader(self, a):
        if self.parent_size[a]<0: return a
        self.parent_size[a]=self.leader(self.parent_size[a])
        return self.parent_size[a]
    def size(self, a):
        return abs(self.parent_size[self.leader(a)])
    def groups(self):
        result=[[] for _ in range(self.n)]
        for i in range(self.n):
            result[self.leader(i)].append(i)
        return [r for r in result if r != []]
n=int(input())
edge=[0]*n
uni=UnionFind(n)
for _ in range(n-1):
    a,b=map(int,input().split())
    uni.merge(a,b)
    edge[a]+=1
    edge[b]+=1
num=len(uni.groups())
if 1 in edge:
    num+=1
if num!=1:
    num-=1
print('Bob' if num==1 else 'Alice')
0