結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | GrayCoder |
提出日時 | 2020-02-01 04:23:35 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 645 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 121,128 KB |
最終ジャッジ日時 | 2024-09-18 19:28:51 |
合計ジャッジ時間 | 32,170 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | AC | 952 ms
56,520 KB |
testcase_02 | AC | 951 ms
56,268 KB |
testcase_03 | AC | 947 ms
56,400 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 930 ms
56,524 KB |
testcase_07 | AC | 939 ms
56,404 KB |
testcase_08 | AC | 928 ms
56,540 KB |
testcase_09 | AC | 923 ms
56,648 KB |
testcase_10 | AC | 933 ms
56,396 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 946 ms
56,936 KB |
testcase_15 | AC | 959 ms
56,936 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 1,012 ms
59,984 KB |
testcase_20 | AC | 1,078 ms
64,576 KB |
testcase_21 | AC | 1,185 ms
70,180 KB |
testcase_22 | AC | 1,236 ms
74,436 KB |
testcase_23 | AC | 1,246 ms
75,888 KB |
testcase_24 | WA | - |
testcase_25 | AC | 1,250 ms
121,128 KB |
ソースコード
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') main()