結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー syunsukesyunsuke
提出日時 2020-09-04 22:29:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 273,664 KB
最終ジャッジ日時 2024-05-04 23:55:01
合計ジャッジ時間 8,074 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
57,216 KB
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 33 ms
51,840 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 46 ms
60,544 KB
testcase_09 AC 42 ms
58,624 KB
testcase_10 WA -
testcase_11 AC 43 ms
58,240 KB
testcase_12 AC 41 ms
52,608 KB
testcase_13 AC 136 ms
77,004 KB
testcase_14 AC 306 ms
82,388 KB
testcase_15 AC 295 ms
82,884 KB
testcase_16 AC 128 ms
77,472 KB
testcase_17 AC 99 ms
76,416 KB
testcase_18 AC 310 ms
79,740 KB
testcase_19 WA -
testcase_20 AC 121 ms
77,436 KB
testcase_21 AC 153 ms
77,952 KB
testcase_22 AC 159 ms
78,140 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
P=[i for i in range(N)]
S=[1 for i in range(N)]

def find(a):
    if a==P[a]:
        return a
    else:
        return find(P[a])
        
def union(b,c):
    B=find(b)
    C=find(c)
    if S[B]<S[C]:
        P[B]=P[C]
        S[C]+=S[B]
    else:
        P[C]=P[B]
        S[C]+=S[B]

for i in range(N-1):
    a,b=map(int,input().split())
    if find(a)!=find(b):
        union(a,b)
        
for i in range(N):
    P[i]=find(i)

for i in range(1,N):
    if P[0]!=P[i]:
        print("Alice")
        exit()
print("Bob")
0