結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー ntudantuda
提出日時 2022-10-10 19:56:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 270 ms / 2,000 ms
コード長 795 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 89,160 KB
最終ジャッジ日時 2024-06-24 16:54:55
合計ジャッジ時間 4,801 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
52,608 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 39 ms
52,480 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 40 ms
52,608 KB
testcase_07 AC 41 ms
52,736 KB
testcase_08 AC 43 ms
53,120 KB
testcase_09 AC 43 ms
52,992 KB
testcase_10 AC 42 ms
52,864 KB
testcase_11 AC 42 ms
52,992 KB
testcase_12 AC 42 ms
52,736 KB
testcase_13 AC 116 ms
78,288 KB
testcase_14 AC 125 ms
78,208 KB
testcase_15 AC 121 ms
77,824 KB
testcase_16 AC 116 ms
77,696 KB
testcase_17 AC 127 ms
77,760 KB
testcase_18 AC 150 ms
81,024 KB
testcase_19 AC 178 ms
80,908 KB
testcase_20 AC 204 ms
82,944 KB
testcase_21 AC 247 ms
86,476 KB
testcase_22 AC 270 ms
88,444 KB
testcase_23 AC 269 ms
88,864 KB
testcase_24 AC 231 ms
89,160 KB
testcase_25 AC 258 ms
88,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
UV = [list(map(int,input().split())) for _ in range(N-1)]
P = [i for i in range(N)]

def find(x):
    if P[x] == x: return x
    else:
        P[x] = find(P[x]) #経路圧縮
        return P[x]
        # return find(P[x]) #経路圧縮なし

def same(x,y):
    return find(x) == find(y)

def unite(x,y):
    x = find(x)
    y = find(y)
    if x == y: return 0
    if x > y: x,y = y,x
    P[y] = x

def group_count():
    for i in range(N):
        P[i] = find(i)
    return len(set(P))

for u,v in UV:
    unite(u,v)
gc = group_count()
if gc == 1:
    print("Bob")
elif gc > 2:
    print("Alice")
else:
    D = [0] * N
    for u,v in UV:
        D[u] += 1
        D[v] += 1
    if D.count(0) == 1 and D.count(2) == N - 1:
        print("Bob")
    else:
        print("Alice")
0