結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー ああいいああいい
提出日時 2022-04-20 12:16:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 716 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 80,000 KB
最終ジャッジ日時 2024-06-11 13:07:27
合計ジャッジ時間 4,579 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 40 ms
51,996 KB
testcase_06 AC 38 ms
52,608 KB
testcase_07 AC 39 ms
52,608 KB
testcase_08 AC 39 ms
52,736 KB
testcase_09 AC 39 ms
53,120 KB
testcase_10 AC 45 ms
52,736 KB
testcase_11 AC 42 ms
52,608 KB
testcase_12 AC 41 ms
52,864 KB
testcase_13 AC 131 ms
77,440 KB
testcase_14 AC 130 ms
77,056 KB
testcase_15 AC 123 ms
77,184 KB
testcase_16 AC 133 ms
77,056 KB
testcase_17 AC 122 ms
77,708 KB
testcase_18 AC 164 ms
78,336 KB
testcase_19 AC 148 ms
78,208 KB
testcase_20 AC 153 ms
77,696 KB
testcase_21 AC 176 ms
78,080 KB
testcase_22 AC 188 ms
78,232 KB
testcase_23 AC 283 ms
80,000 KB
testcase_24 AC 222 ms
78,968 KB
testcase_25 AC 269 ms
78,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

parent = list(range(N))
import sys
sys.setrecursionlimit(10 ** 8)
def find(i):
    if parent[i] == i:return i
    parent[i] = find(parent[i])
    return parent[i]
def unite(i,j):
    I = find(i)
    J = find(j)
    if I == J:return False
    parent[I] = J
    parent[i] = J
    return True
Gnum = [0] * N
for _ in range(N-1):
    u,v = map(int,input().split())
    Gnum[u] += 1
    Gnum[v] += 1
    unite(u,v)
s = set()
for i in range(N):
    s.add(find(i))
if len(s) == 1:
    print("Bob")
elif len(s) >= 3:
    print("Alice")
else:
    flag = False
    for i in Gnum:
        if i == 1:
            flag = True
            break
    if flag:
        print('Alice')
    else:
        print('Bob')
0