結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー titiatitia
提出日時 2020-01-31 21:36:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 603 ms / 2,000 ms
コード長 805 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 29,696 KB
最終ジャッジ日時 2024-09-17 07:21:19
合計ジャッジ時間 5,237 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 78 ms
12,544 KB
testcase_14 AC 77 ms
12,672 KB
testcase_15 AC 78 ms
12,544 KB
testcase_16 AC 80 ms
12,544 KB
testcase_17 AC 80 ms
12,544 KB
testcase_18 AC 176 ms
16,384 KB
testcase_19 AC 185 ms
16,384 KB
testcase_20 AC 284 ms
19,712 KB
testcase_21 AC 423 ms
24,832 KB
testcase_22 AC 556 ms
28,672 KB
testcase_23 AC 603 ms
29,568 KB
testcase_24 AC 545 ms
29,568 KB
testcase_25 AC 578 ms
29,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
E=[tuple(map(int,input().split())) for i in range(n-1)]

# UnionFind

Group = [i for i in range(n)] # グループ分け
Nodes = [1]*n # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

D=[0]*n
for x,y in E:
    Union(x,y)
    D[x]+=1
    D[y]+=1

if max(Nodes)==n:
    print("Bob")
elif max(Nodes)==n-1 and max(D)==2 and not (1 in D):
    print("Bob")
else:
    print("Alice")

0