結果

問題 No.583 鉄道同好会
ユーザー H3PO4H3PO4
提出日時 2020-10-01 09:45:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,832 ms / 2,000 ms
コード長 714 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 120,300 KB
最終ジャッジ日時 2024-07-07 01:10:26
合計ジャッジ時間 22,598 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,832 ms
56,648 KB
testcase_01 AC 775 ms
56,656 KB
testcase_02 AC 776 ms
56,788 KB
testcase_03 AC 780 ms
56,520 KB
testcase_04 AC 787 ms
56,656 KB
testcase_05 AC 779 ms
56,904 KB
testcase_06 AC 785 ms
56,780 KB
testcase_07 AC 798 ms
56,896 KB
testcase_08 AC 779 ms
56,780 KB
testcase_09 AC 795 ms
56,792 KB
testcase_10 AC 775 ms
56,656 KB
testcase_11 AC 906 ms
57,816 KB
testcase_12 AC 944 ms
58,068 KB
testcase_13 AC 959 ms
58,056 KB
testcase_14 AC 945 ms
57,288 KB
testcase_15 AC 1,003 ms
59,092 KB
testcase_16 AC 1,273 ms
62,256 KB
testcase_17 AC 1,316 ms
64,412 KB
testcase_18 AC 1,312 ms
120,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
from scipy.sparse.csgraph import connected_components
from scipy.sparse import csr_matrix

N, M = map(int, input().split())

deg = [0] * N
valid_stations = set()
frm, to = [], []
for _ in range(M):
    a, b = map(int, input().split())
    valid_stations.add(a)
    valid_stations.add(b)
    frm.append(a)
    to.append(b)
    deg[a] += 1
    deg[b] += 1

# 連結判定
matr = csr_matrix(([1] * M, (frm, to)), shape=(N, N))
_, labels = connected_components(matr)
ct = Counter(labels[list(valid_stations)])
if len(ct) > 1:
    print('NO')
    exit()

# 一筆書き可能性判定
is_odd = 0
for x in deg:
    if x % 2:
        is_odd += 1
print('YES' if is_odd in (0, 2) else 'NO')
0