結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-01-31 22:45:39
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 762 ms / 2,000 ms
コード長 1,048 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 34,340 KB
最終ジャッジ日時 2024-09-17 09:39:49
合計ジャッジ時間 6,666 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

def uf_find(n,p):

    ufl = []

    while p[n] != n:
        ufl.append(n)
        n = p[n]

    for i in ufl:
        p[i] = n

    return n


def uf_union(a,b,p,rank):

    ap = uf_find(a,p)
    bp = uf_find(b,p)

    if ap == bp:
        return True
    else:

        if rank[ap] > rank[bp]:
            p[bp] = ap
        elif rank[ap] < rank[bp]:
            p[ap] = bp
        else:
            p[bp] = ap
            rank[ap] += 1

        return False

N = int(input())

p = [i for i in range(N)]
rank = [1] * N
dic = {}

for i in range(N-1):

    u,v = map(int,input().split())
    uf_union(u,v,p,rank)

    if v not in dic:
        dic[v] = []
    if u not in dic:
        dic[u] = []

    dic[v].append(u)
    dic[u].append(v)

num = 0

for i in range(N):

    if i == uf_find(i,p):
        num += 1

if num >= 3:
    print ("Alice")
elif num == 1:
    print ("Bob")
else:

    t = 0

    for i in dic:
        
        if len(dic[i]) == 2:
            t += 1

    if t == N-1:
        print ("Bob")
    else:
        print ("Alice")
0