結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー tyawanmusityawanmusi
提出日時 2020-01-31 23:09:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 510 ms / 2,000 ms
コード長 1,028 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,464 KB
最終ジャッジ日時 2024-09-17 10:22:22
合計ジャッジ時間 4,900 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
11,008 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 32 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 32 ms
10,880 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 32 ms
10,880 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 31 ms
10,880 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 73 ms
11,136 KB
testcase_14 AC 73 ms
11,264 KB
testcase_15 AC 73 ms
11,136 KB
testcase_16 AC 75 ms
11,136 KB
testcase_17 AC 74 ms
11,264 KB
testcase_18 AC 165 ms
11,776 KB
testcase_19 AC 167 ms
12,032 KB
testcase_20 AC 258 ms
12,672 KB
testcase_21 AC 396 ms
13,696 KB
testcase_22 AC 510 ms
14,464 KB
testcase_23 AC 508 ms
14,208 KB
testcase_24 AC 494 ms
14,080 KB
testcase_25 AC 505 ms
14,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys;sys.setrecursionlimit(10**9)
class UnionFind():
  def __init__(self,n):
    self.n=[-1]*n
    self.r=[0]*n
  def Find_Root(self,x):
    if self.n[x]<0:
      return x
    else:
      self.n[x]=self.Find_Root(self.n[x])
      return self.n[x]
  def Unite(self,x,y):
    x=self.Find_Root(x)
    y=self.Find_Root(y)
    if x==y:return
    elif self.r[x]>self.r[y]:
      self.n[x]+=self.n[y]
      self.n[y]=x
    else:
      self.n[y]+=self.n[x]
      self.n[x]=y
      if self.r[x]==self.r[y]:
        self.r[y]+=1
  def Root_Same(self,x,y):
    return self.Find_Root(x)==self.Find_Root(y)
  def Count(self,x):
    return -self.n[self.Find_Root(x)]
  def Is_Root(self,x):
    return self.Find_Root(x)==x
n=int(input())
u=UnionFind(n)
x=[0]*n
for i in range(n-1):
  a,b=map(int,input().split())
  u.Unite(a,b)
  x[a]+=1
  x[b]+=1
c=[]
for i in range(n):
  if u.Is_Root(i):c.append(i)
if len(c)==1:print("Bob")
elif len(c)==2:
  if x.count(0)==1 and x.count(2)==n-1:print("Bob")
  else:print("Alice")
else:print("Alice")
0