結果

問題 No.482 あなたの名は
ユーザー H3PO4H3PO4
提出日時 2020-08-25 09:59:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,389 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 111,740 KB
最終ジャッジ日時 2024-11-06 11:07:13
合計ジャッジ時間 39,687 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,389 ms
56,232 KB
testcase_01 AC 1,117 ms
56,488 KB
testcase_02 AC 989 ms
56,368 KB
testcase_03 AC 967 ms
56,232 KB
testcase_04 AC 973 ms
56,488 KB
testcase_05 AC 982 ms
56,232 KB
testcase_06 AC 978 ms
56,496 KB
testcase_07 AC 975 ms
56,240 KB
testcase_08 AC 963 ms
56,324 KB
testcase_09 AC 983 ms
56,236 KB
testcase_10 AC 981 ms
56,492 KB
testcase_11 AC 984 ms
56,748 KB
testcase_12 AC 994 ms
56,500 KB
testcase_13 AC 960 ms
56,232 KB
testcase_14 AC 978 ms
56,748 KB
testcase_15 AC 1,251 ms
73,500 KB
testcase_16 AC 1,242 ms
73,236 KB
testcase_17 AC 1,259 ms
73,876 KB
testcase_18 AC 1,255 ms
73,392 KB
testcase_19 AC 1,258 ms
73,120 KB
testcase_20 AC 1,256 ms
73,624 KB
testcase_21 AC 1,272 ms
73,500 KB
testcase_22 AC 1,230 ms
73,492 KB
testcase_23 AC 1,261 ms
73,384 KB
testcase_24 AC 1,251 ms
73,376 KB
testcase_25 AC 1,251 ms
73,104 KB
testcase_26 AC 1,272 ms
73,232 KB
testcase_27 AC 1,267 ms
73,496 KB
testcase_28 AC 1,260 ms
73,624 KB
testcase_29 AC 1,257 ms
73,756 KB
testcase_30 AC 1,030 ms
111,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int1 = lambda x: int(x) - 1

N, K = map(int, input().split())
D = tuple(map(int1, input().split()))

matr = csr_matrix(([1] * N, (D, range(N))), shape=(N, N))
p = connected_components(matr, connection='strong', return_labels=False)
surplus_swap = K - (N - p)
print('YES' if surplus_swap >= 0 and surplus_swap % 2 == 0 else 'NO')
0