結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-31 03:35:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 309 ms / 2,000 ms
コード長 1,036 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 89,608 KB
最終ジャッジ日時 2024-06-23 14:40:53
合計ジャッジ時間 4,582 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,488 KB
testcase_01 AC 36 ms
53,692 KB
testcase_02 AC 38 ms
53,268 KB
testcase_03 AC 37 ms
52,956 KB
testcase_04 AC 37 ms
53,400 KB
testcase_05 AC 37 ms
52,200 KB
testcase_06 AC 37 ms
54,024 KB
testcase_07 AC 36 ms
53,556 KB
testcase_08 AC 38 ms
53,948 KB
testcase_09 AC 38 ms
54,232 KB
testcase_10 AC 37 ms
52,532 KB
testcase_11 AC 39 ms
53,220 KB
testcase_12 AC 39 ms
52,952 KB
testcase_13 AC 112 ms
77,748 KB
testcase_14 AC 111 ms
76,980 KB
testcase_15 AC 106 ms
76,972 KB
testcase_16 AC 108 ms
77,240 KB
testcase_17 AC 114 ms
77,452 KB
testcase_18 AC 143 ms
80,304 KB
testcase_19 AC 167 ms
81,408 KB
testcase_20 AC 209 ms
82,532 KB
testcase_21 AC 260 ms
86,440 KB
testcase_22 AC 304 ms
89,608 KB
testcase_23 AC 301 ms
88,876 KB
testcase_24 AC 246 ms
88,464 KB
testcase_25 AC 309 ms
89,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

def Find(x, par):
  if par[x] < 0:
    return x
  else:
    # 経路圧縮
    par[x] = Find(par[x], par)
    return par[x]

def Unite(x, y, par, rank):
  x = Find(x, par)
  y = Find(y, par)

  if x != y:
    # rankの低い方を高い方につなげる
    if rank[x] < rank[y]:
      par[y] += par[x]
      par[x] = y
    else:
      par[x] += par[y]
      par[y] = x
      if rank[x] == rank[y]:
        rank[x] += 1

def Same(x, y, par):
  return Find(x, par) == Find(y, par)

def Size(x, par):
  return -par[Find(x, par)]

n = int(input())
g = [[] for _ in range(n)]

par = [-1]* n
rank = [0]*n

for i in range(n-1):
    u, v = map(int, input().split())
    g[u].append(v)
    g[v].append(u)
    Unite(u, v, par, rank)

s = 0
for i in range(n):
    if par[i] < 0:
        s += 1
if s == 1:
    print('Bob')
elif s >= 3:
    print('Alice')
else:
    for i in range(n):
        if len(g[i]) != 0 and len(g[i]) != 2:
            print('Alice')
            exit()
    else:
        print('Bob')
0