結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,880 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 26 ms
11,008 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 26 ms
11,008 KB
testcase_09 AC 27 ms
11,008 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 27 ms
10,880 KB
testcase_12 AC 28 ms
10,880 KB
testcase_13 AC 93 ms
12,672 KB
testcase_14 AC 477 ms
12,800 KB
testcase_15 AC 455 ms
12,800 KB
testcase_16 AC 87 ms
12,544 KB
testcase_17 AC 76 ms
12,672 KB
testcase_18 AC 250 ms
16,768 KB
testcase_19 AC 181 ms
16,768 KB
testcase_20 AC 279 ms
20,352 KB
testcase_21 AC 433 ms
25,600 KB
testcase_22 AC 564 ms
29,440 KB
testcase_23 RE -
testcase_24 AC 745 ms
30,208 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):
    if get(i) == get(j):
        return
    union[get(i)] = get(j)
    union[i] = get(j)
    
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