結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー FeLvi_zzzFeLvi_zzz
提出日時 2020-02-08 08:13:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 622 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,976 KB
最終ジャッジ日時 2024-09-25 08:44:28
合計ジャッジ時間 4,834 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 WA -
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 70 ms
11,008 KB
testcase_14 AC 72 ms
11,264 KB
testcase_15 AC 74 ms
11,136 KB
testcase_16 AC 71 ms
11,136 KB
testcase_17 AC 71 ms
11,008 KB
testcase_18 AC 153 ms
11,904 KB
testcase_19 WA -
testcase_20 AC 229 ms
12,672 KB
testcase_21 AC 346 ms
13,696 KB
testcase_22 AC 446 ms
14,592 KB
testcase_23 AC 497 ms
14,720 KB
testcase_24 AC 464 ms
14,720 KB
testcase_25 AC 491 ms
14,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

import sys
sys.setrecursionlimit(10**6)

class UnionFind():
  def __init__(self, n):
    self.par = [i for i in range(n)]

  def root(self, x):
    if self.par[x] == x:
      return x
    else:
      self.par[x] = self.root(self.par[x])
      return self.par[x]
  
  def unite(self, x, y):
    x = self.root(x)
    y = self.root(y)
    self.par[y] = x

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

uf = UnionFind(N)
for i in range(N-1):
  u, v = map(int, input().split())
  uf.unite(u, v)

ans = set()
for i in range(N):
  ans.add(uf.root(i))
print("Alice" if len(ans) > 1 else "Bob")
0