結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー GrayCoderGrayCoder
提出日時 2020-01-31 22:17:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 475 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 128,788 KB
最終ジャッジ日時 2024-09-17 08:38:20
合計ジャッジ時間 27,912 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,213 ms
56,500 KB
testcase_01 AC 844 ms
56,424 KB
testcase_02 AC 825 ms
56,508 KB
testcase_03 AC 821 ms
56,340 KB
testcase_04 AC 838 ms
56,760 KB
testcase_05 AC 833 ms
56,616 KB
testcase_06 AC 824 ms
56,616 KB
testcase_07 AC 837 ms
56,368 KB
testcase_08 AC 817 ms
56,492 KB
testcase_09 AC 874 ms
56,624 KB
testcase_10 WA -
testcase_11 AC 847 ms
56,752 KB
testcase_12 AC 859 ms
56,368 KB
testcase_13 AC 889 ms
57,164 KB
testcase_14 AC 860 ms
56,644 KB
testcase_15 AC 862 ms
58,028 KB
testcase_16 AC 871 ms
56,892 KB
testcase_17 AC 888 ms
57,136 KB
testcase_18 AC 917 ms
60,208 KB
testcase_19 WA -
testcase_20 AC 952 ms
64,412 KB
testcase_21 AC 1,030 ms
70,172 KB
testcase_22 AC 1,101 ms
74,620 KB
testcase_23 AC 1,111 ms
75,756 KB
testcase_24 AC 1,095 ms
75,572 KB
testcase_25 AC 1,112 ms
128,788 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')
    else:
        print('Alice')


main()
0