結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー paruf4paruf4
提出日時 2020-06-20 18:49:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 511 ms / 2,000 ms
コード長 995 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,152 KB
最終ジャッジ日時 2024-07-03 17:31:10
合計ジャッジ時間 4,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,880 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 30 ms
11,008 KB
testcase_09 AC 29 ms
11,008 KB
testcase_10 AC 30 ms
10,880 KB
testcase_11 AC 30 ms
11,008 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 75 ms
11,392 KB
testcase_14 AC 74 ms
11,392 KB
testcase_15 AC 73 ms
11,264 KB
testcase_16 AC 76 ms
11,520 KB
testcase_17 AC 76 ms
11,520 KB
testcase_18 AC 167 ms
12,544 KB
testcase_19 AC 169 ms
12,544 KB
testcase_20 AC 256 ms
13,824 KB
testcase_21 AC 381 ms
14,208 KB
testcase_22 AC 485 ms
16,768 KB
testcase_23 AC 508 ms
17,152 KB
testcase_24 AC 505 ms
17,024 KB
testcase_25 AC 511 ms
17,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
  def __init__(self, n):
    self.p = [-1]*n
    # union by rank
    self.r = [1]*n
 
  def find(self, x):
    if self.p[x] < 0:
      return x
    else:
      self.p[x] = self.find(self.p[x])
      return self.p[x]

  def union(self, x, y):
    rx, ry = self.find(x), self.find(y)

    if rx != ry:
      if self.r[rx] > self.r[ry]:
        rx, ry = ry, rx
      if self.r[rx] == self.r[ry]:
        self.r[ry] += 1
      self.p[ry] += self.p[rx]
      self.p[rx] = ry

  def same(self, x, y):
    return self.find(x) == self.find(y)

  def count_member(self, x):
    return -self.p[self.find(x)]

n=int(input())
uf=UnionFind(n)
edge=[0]*n
for i in range(n-1):
  u,v=map(int,input().split())
  uf.union(u,v)
  edge[u]+=1
  edge[v]+=1
c=[0]*n
for i in range(n):
  c[i]=uf.count_member(i)
c=set(c)

from collections import Counter

if len(c)==1:
  print("Bob")
elif len(c)>=3:
  print("Alice")
else:
  c=Counter(edge)
  if c[2]==n-1:
    print("Bob")
  else:
    print("Alice")

0