結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-01-31 22:45:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 30 ms
11,008 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 30 ms
11,008 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 AC 30 ms
11,008 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 91 ms
12,920 KB
testcase_14 AC 87 ms
12,928 KB
testcase_15 AC 87 ms
12,928 KB
testcase_16 AC 91 ms
12,924 KB
testcase_17 AC 90 ms
12,928 KB
testcase_18 AC 221 ms
17,380 KB
testcase_19 AC 235 ms
17,340 KB
testcase_20 AC 369 ms
22,164 KB
testcase_21 AC 557 ms
26,508 KB
testcase_22 AC 748 ms
33,532 KB
testcase_23 AC 761 ms
34,304 KB
testcase_24 AC 726 ms
34,148 KB
testcase_25 AC 762 ms
34,340 KB
権限があれば一括ダウンロードができます

ソースコード

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