結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー ronpooronpoo
提出日時 2023-10-31 11:17:17
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 691 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 100,976 KB
最終ジャッジ日時 2024-09-25 17:33:22
合計ジャッジ時間 4,931 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,576 KB
testcase_01 AC 36 ms
52,128 KB
testcase_02 AC 36 ms
53,112 KB
testcase_03 AC 40 ms
52,532 KB
testcase_04 AC 36 ms
53,876 KB
testcase_05 AC 36 ms
52,476 KB
testcase_06 AC 37 ms
52,204 KB
testcase_07 AC 37 ms
53,444 KB
testcase_08 AC 37 ms
53,240 KB
testcase_09 AC 37 ms
53,440 KB
testcase_10 AC 39 ms
53,620 KB
testcase_11 AC 38 ms
53,124 KB
testcase_12 AC 39 ms
54,100 KB
testcase_13 AC 106 ms
79,004 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 103 ms
79,216 KB
testcase_17 RE -
testcase_18 AC 133 ms
84,364 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 192 ms
94,000 KB
testcase_22 AC 237 ms
100,892 KB
testcase_23 AC 255 ms
100,444 KB
testcase_24 AC 263 ms
100,976 KB
testcase_25 AC 244 ms
100,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

comp = [-1] * N
compn = [0] * N
G = [[] for _ in range(N)]
for i in range(N-1):
    u, v = UV[i]
    G[u].append(v)
    G[v].append(u)
    compn[u] += 1
    compn[v] += 1

def dfs(now):
    for nxt in G[now]:
        if comp[nxt] != -1:
            continue
        comp[nxt] = comp[now]
        dfs(nxt)

cnt = 0
for i in range(N):
    if comp[i] != -1:
        continue
    cnt += 1
    comp[i] = cnt
    dfs(i)
    
if max(comp) == 1:    
    print('Bob')
elif max(comp) >= 3:
    print('Alice')
else:
    if all([False if x == 1 else True for x in compn]):
        print('Bob')
    else:
        print('Alice')
0