結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー chinchillachinchilla
提出日時 2020-02-02 14:40:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 612 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 28,800 KB
最終ジャッジ日時 2024-09-18 20:45:17
合計ジャッジ時間 5,348 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 31 ms
10,624 KB
testcase_10 AC 32 ms
10,624 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 32 ms
10,624 KB
testcase_13 AC 78 ms
12,416 KB
testcase_14 AC 67 ms
12,416 KB
testcase_15 AC 69 ms
12,416 KB
testcase_16 AC 80 ms
12,416 KB
testcase_17 AC 78 ms
12,416 KB
testcase_18 AC 171 ms
16,128 KB
testcase_19 AC 175 ms
16,128 KB
testcase_20 AC 270 ms
19,584 KB
testcase_21 AC 396 ms
24,192 KB
testcase_22 AC 509 ms
27,904 KB
testcase_23 AC 612 ms
28,672 KB
testcase_24 AC 519 ms
28,800 KB
testcase_25 AC 606 ms
28,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
b = [tuple(map(int, input().split())) for _ in range(n-1)]
l = list(range(n))
def f(u, d = 0): return (u, d) if l[u] == u else f(l[u], d+1)
c = [0] * n
r = n - 1
for u, v in b:
	c[u] += 1
	c[v] += 1
	u, d = f(u)
	v, e = f(v)
	if u == v: break
	if d < e: l[u] = v
	else: l[v] = u
	r -= 1
if 1 not in c: r -= 1
print("Alice" if r else "Bob")
0