結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー GrayCoderGrayCoder
提出日時 2020-02-01 04:34:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,289 ms / 2,000 ms
コード長 686 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 134,792 KB
最終ジャッジ日時 2024-09-18 19:29:39
合計ジャッジ時間 28,039 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 999 ms
56,388 KB
testcase_01 AC 818 ms
56,532 KB
testcase_02 AC 820 ms
56,552 KB
testcase_03 AC 811 ms
56,524 KB
testcase_04 AC 800 ms
56,396 KB
testcase_05 AC 819 ms
56,272 KB
testcase_06 AC 806 ms
56,392 KB
testcase_07 AC 820 ms
56,140 KB
testcase_08 AC 809 ms
56,520 KB
testcase_09 AC 843 ms
56,776 KB
testcase_10 AC 818 ms
56,516 KB
testcase_11 AC 851 ms
56,396 KB
testcase_12 AC 814 ms
56,144 KB
testcase_13 AC 851 ms
57,548 KB
testcase_14 AC 844 ms
57,168 KB
testcase_15 AC 851 ms
57,540 KB
testcase_16 AC 844 ms
57,924 KB
testcase_17 AC 859 ms
57,552 KB
testcase_18 AC 889 ms
60,352 KB
testcase_19 AC 908 ms
60,368 KB
testcase_20 AC 950 ms
64,024 KB
testcase_21 AC 1,020 ms
69,936 KB
testcase_22 AC 1,267 ms
74,408 KB
testcase_23 AC 1,289 ms
75,360 KB
testcase_24 AC 1,122 ms
75,360 KB
testcase_25 AC 1,092 ms
134,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.sparse.csgraph import connected_components
from scipy.sparse import csr_matrix
from sys import stdin


def main():
    input = lambda: stdin.readline()[:-1]
    N = int(input())
    UV = [tuple(map(int, input().split())) for _ in [0] * (N - 1)]

    l = list(zip(*UV))
    d = [1] * len(UV)
    a = csr_matrix((d, (l[0], l[1])), (N, N))
    x = connected_components(a, return_labels=0)
    if x == 1:
        print('Bob')
    elif x == 2:
        cnt = [0] * N
        for u, v in UV:
            cnt[u] += 1
            cnt[v] += 1
        if cnt.count(2) == N - 1:
            print('Bob')
        else:
            print('Alice')
    else:
        print('Alice')


main()
0