結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー ArcAkiArcAki
提出日時 2024-06-20 15:48:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,008 KB
実行使用メモリ 90,212 KB
最終ジャッジ日時 2024-06-20 15:48:13
合計ジャッジ時間 4,871 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,128 KB
testcase_01 AC 35 ms
55,096 KB
testcase_02 AC 37 ms
55,120 KB
testcase_03 AC 35 ms
54,424 KB
testcase_04 AC 35 ms
55,116 KB
testcase_05 AC 35 ms
54,568 KB
testcase_06 AC 36 ms
55,188 KB
testcase_07 AC 37 ms
55,052 KB
testcase_08 AC 37 ms
55,028 KB
testcase_09 AC 46 ms
55,248 KB
testcase_10 AC 50 ms
55,496 KB
testcase_11 AC 39 ms
56,108 KB
testcase_12 AC 38 ms
55,028 KB
testcase_13 AC 122 ms
78,452 KB
testcase_14 AC 124 ms
78,708 KB
testcase_15 AC 123 ms
78,368 KB
testcase_16 AC 117 ms
78,244 KB
testcase_17 AC 126 ms
78,492 KB
testcase_18 AC 152 ms
81,444 KB
testcase_19 AC 194 ms
81,400 KB
testcase_20 AC 201 ms
83,748 KB
testcase_21 AC 224 ms
87,592 KB
testcase_22 AC 247 ms
89,744 KB
testcase_23 AC 226 ms
90,212 KB
testcase_24 AC 221 ms
89,948 KB
testcase_25 AC 236 ms
90,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict as dd
from sys import exit
n = int(input())
bridge = [list(map(int, input().split()))for _ in range(n-1)]
parent = [-1]*n
cnt = [0]*n


def find(x):
    if parent[x] < 0: return x
    parent[x] = find(parent[x])
    return parent[x]


def union(x, y):
    px, py = find(x), find(y)
    if px==py: return
    if parent[px] > parent[py]: px, py = py, px
    parent[px] += parent[py]
    parent[py] = px


for x, y in bridge:
    union(x, y)
    cnt[x] += 1
    cnt[y] += 1
dic = dd(lambda: 0)
for i in range(n):
    dic[find(i)] += 1
if len(dic)==1:
    print("Bob")
elif len(dic)==2:
    x, y = dic.keys()
    if dic[x] > dic[y]: x, y = y, x
    if dic[x]==1:
        for i in range(n):
            if not(i==x or cnt[i]==2):
                print("Alice")
                exit()
        print("Bob")
    else:
        print("Alice")
else:
    print("Alice")
0