結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー いたいた
提出日時 2024-12-04 05:46:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,532 KB
最終ジャッジ日時 2024-12-04 05:46:30
合計ジャッジ時間 4,214 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,632 KB
testcase_01 AC 40 ms
54,016 KB
testcase_02 AC 40 ms
53,632 KB
testcase_03 AC 40 ms
53,376 KB
testcase_04 AC 42 ms
53,248 KB
testcase_05 AC 40 ms
53,632 KB
testcase_06 AC 41 ms
53,504 KB
testcase_07 AC 40 ms
54,016 KB
testcase_08 AC 40 ms
54,144 KB
testcase_09 AC 44 ms
54,272 KB
testcase_10 AC 42 ms
54,400 KB
testcase_11 AC 41 ms
53,760 KB
testcase_12 AC 40 ms
54,144 KB
testcase_13 AC 114 ms
77,028 KB
testcase_14 AC 128 ms
77,440 KB
testcase_15 AC 132 ms
77,564 KB
testcase_16 AC 122 ms
77,672 KB
testcase_17 AC 131 ms
77,316 KB
testcase_18 AC 146 ms
77,700 KB
testcase_19 AC 176 ms
77,680 KB
testcase_20 AC 211 ms
78,464 KB
testcase_21 AC 266 ms
78,848 KB
testcase_22 AC 277 ms
79,104 KB
testcase_23 AC 259 ms
78,976 KB
testcase_24 AC 225 ms
78,848 KB
testcase_25 AC 280 ms
79,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N=int(input())
def root(n):

  if ne[n]<0:return n
  else:
    ne[n]=root(ne[n])
    return ne[n]
ne=[-1]*N
def merge(x,y):
  x,y=root(x),root(y)
  if x==y:return
  if y<x:y,x=x,y
  ne[x]+=ne[y]
  ne[y]=x
a=[0]*N
for _ in range(N-1):
  u,v=map(int,input().split())
  merge(u,v)
  a[u]+=1
  a[v]+=1
v=set()
for i in range(N):
  v.add(root(i))
a.sort()
if len(v)==1:
  print("Bob")
elif len(v)==2 and a[1]>1:
    print("Bob")
else:
  print("Alice")
0