結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー ああいいああいい
提出日時 2021-12-05 18:30:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 776 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 30,464 KB
最終ジャッジ日時 2024-07-07 08:39:55
合計ジャッジ時間 6,124 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 27 ms
10,880 KB
testcase_11 AC 26 ms
10,880 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 84 ms
12,416 KB
testcase_14 AC 261 ms
12,672 KB
testcase_15 AC 262 ms
12,672 KB
testcase_16 AC 79 ms
12,416 KB
testcase_17 AC 76 ms
12,544 KB
testcase_18 AC 193 ms
16,640 KB
testcase_19 AC 167 ms
16,512 KB
testcase_20 AC 258 ms
20,224 KB
testcase_21 AC 401 ms
25,344 KB
testcase_22 AC 526 ms
29,312 KB
testcase_23 RE -
testcase_24 AC 590 ms
30,080 KB
testcase_25 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
u = [0] * (N-1)
v = [0] * (N-1)
for i in range(N-1):
    u[i],v[i] = list(map(int,input().split()))

tree = [[] for _ in range(N)]
union = [i for i in range(N)]

def get(i):
    if union[i] == i:
        return i
    else:
        return get(union[i])
def renketu(i,j):
    s = get(i)
    t = get(j)
    if s == t:
        return
    union[s] = t
    union[i] = t
    
for i in range(N-1):
    tree[u[i]].append(v[i])
    tree[v[i]].append(u[i])

    renketu(u[i],v[i])

cone = 0
for i in range(N):
    if union[i] == i:
        cone += 1
num = 0
for i in range(N):
    if len(tree[i]) == 1:
        num += 1

    
A = 'Alice'
B = 'Bob'
if cone == 1:
    print(B)
elif cone >= 3:
    print(A)
else:
    if num > 0:
        print(A)
    else:
        print(B)
0