結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー むつあるむつある
提出日時 2024-06-20 15:58:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 2,000 ms
コード長 741 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 78,724 KB
最終ジャッジ日時 2024-06-20 15:58:23
合計ジャッジ時間 4,434 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,988 KB
testcase_01 AC 32 ms
52,688 KB
testcase_02 AC 31 ms
53,664 KB
testcase_03 AC 31 ms
53,308 KB
testcase_04 AC 33 ms
52,388 KB
testcase_05 AC 36 ms
53,016 KB
testcase_06 AC 33 ms
53,132 KB
testcase_07 AC 34 ms
53,416 KB
testcase_08 AC 34 ms
53,928 KB
testcase_09 AC 33 ms
53,240 KB
testcase_10 AC 36 ms
52,692 KB
testcase_11 AC 33 ms
53,560 KB
testcase_12 AC 34 ms
53,272 KB
testcase_13 AC 102 ms
76,592 KB
testcase_14 AC 99 ms
76,632 KB
testcase_15 AC 96 ms
76,320 KB
testcase_16 AC 96 ms
77,196 KB
testcase_17 AC 117 ms
76,892 KB
testcase_18 AC 116 ms
77,404 KB
testcase_19 AC 170 ms
77,412 KB
testcase_20 AC 154 ms
77,204 KB
testcase_21 AC 180 ms
78,564 KB
testcase_22 AC 193 ms
78,272 KB
testcase_23 AC 181 ms
78,640 KB
testcase_24 AC 223 ms
78,472 KB
testcase_25 AC 212 ms
78,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def find(x):
  if tree[x]<0:
    return x
  tree[x]=find(tree[x])
  return tree[x]
  
def unite(x,y):
  x=find(x)
  y=find(y)
  if x==y:
    return
  if tree[x]>tree[y]:
    x,y=y,x
  tree[x]+=tree[y]
  tree[y]=x
  
n=int(input())
tree=[-1]*n

g=[0]*n

for _ in range(n-1):
  a,b=map(int,input().split())
  g[a]+=1
  g[b]+=1
  unite(a,b)
  
cnt=[]
for i in range(n):
  if tree[i]<0:
    cnt.append(i)
    
if len(cnt)==1:
  print('Bob')
elif len(cnt)>2:
  print('Alice')
else:
  q=[g[cnt[0]],g[cnt[1]]]
  if 0 not in q:
    print('Alice')
    exit()
  if q[0]==0:
    s=cnt[1]
  else:
    s=cnt[0]
  bool=True
  for i in range(n):
    if find(i)==s:
      if g[i]!=2:
        bool=False
  if bool:
    print('Bob')
  else:
    print('Alice')
0