結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー むつあるむつある
提出日時 2024-06-20 15:39:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 730 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 78,496 KB
最終ジャッジ日時 2024-06-20 15:39:17
合計ジャッジ時間 5,002 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,016 KB
testcase_01 AC 37 ms
53,880 KB
testcase_02 AC 39 ms
52,740 KB
testcase_03 AC 38 ms
53,192 KB
testcase_04 AC 41 ms
52,760 KB
testcase_05 AC 44 ms
52,560 KB
testcase_06 AC 39 ms
52,336 KB
testcase_07 AC 39 ms
53,052 KB
testcase_08 AC 41 ms
53,168 KB
testcase_09 AC 40 ms
53,340 KB
testcase_10 AC 40 ms
53,108 KB
testcase_11 AC 39 ms
53,068 KB
testcase_12 AC 40 ms
53,352 KB
testcase_13 WA -
testcase_14 AC 113 ms
76,644 KB
testcase_15 AC 115 ms
76,656 KB
testcase_16 WA -
testcase_17 AC 140 ms
77,056 KB
testcase_18 WA -
testcase_19 AC 175 ms
77,256 KB
testcase_20 AC 183 ms
77,304 KB
testcase_21 AC 208 ms
78,264 KB
testcase_22 AC 232 ms
78,496 KB
testcase_23 AC 211 ms
78,196 KB
testcase_24 AC 255 ms
78,396 KB
testcase_25 AC 211 ms
78,272 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')
  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