結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー KodaiKodai
提出日時 2020-04-15 16:16:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 906 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 19,300 KB
最終ジャッジ日時 2024-04-09 18:44:53
合計ジャッジ時間 5,271 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 83 ms
11,904 KB
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 83 ms
11,776 KB
testcase_17 AC 73 ms
11,648 KB
testcase_18 RE -
testcase_19 WA -
testcase_20 AC 255 ms
15,096 KB
testcase_21 AC 385 ms
16,360 KB
testcase_22 AC 503 ms
19,300 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N = int(input())


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

    def root(self, x):
        if self.parent[x] != x:
            return self.root(self.parent[x])
        else:
            return x

    def unite(self, x, y):
        rx = self.root(x)
        ry = self.root(y)
        if rx != ry:
            self.parent[rx] = ry


uni = UnionFind(N)
temp_list = [0 for i in range(N)]
for i in range(N-1):
    a, b = list(map(int, input().split()))
    uni.unite(b, a)
    temp_list[a] += 1
    temp_list[b] += 1

count = Counter(uni.parent)
count2 = Counter(temp_list)

if count[0] == N:
    print("Bob")
elif len(count) == 2:
    if 2 in count2:
        if count2[2] == N-1:
            print("Bob")
        else:
            print("Alice")
    else:
        print("Alice")
else:
    print("Alice")
0