結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー syunsukesyunsuke
提出日時 2020-09-04 22:29:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 519,672 KB
最終ジャッジ日時 2024-11-26 14:54:53
合計ジャッジ時間 12,437 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,804 KB
testcase_01 AC 37 ms
53,612 KB
testcase_02 AC 36 ms
54,420 KB
testcase_03 AC 37 ms
53,700 KB
testcase_04 AC 36 ms
53,568 KB
testcase_05 AC 36 ms
52,708 KB
testcase_06 AC 36 ms
52,804 KB
testcase_07 AC 38 ms
54,196 KB
testcase_08 AC 47 ms
60,612 KB
testcase_09 AC 41 ms
58,664 KB
testcase_10 WA -
testcase_11 AC 41 ms
59,908 KB
testcase_12 AC 36 ms
53,348 KB
testcase_13 AC 117 ms
76,684 KB
testcase_14 AC 304 ms
82,312 KB
testcase_15 AC 301 ms
81,856 KB
testcase_16 AC 141 ms
77,276 KB
testcase_17 AC 104 ms
77,140 KB
testcase_18 AC 326 ms
79,492 KB
testcase_19 WA -
testcase_20 AC 125 ms
77,604 KB
testcase_21 AC 155 ms
77,880 KB
testcase_22 AC 178 ms
78,632 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 MLE -
権限があれば一括ダウンロードができます

ソースコード

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