結果

問題 No.247 線形計画問題もどき
ユーザー H3PO4H3PO4
提出日時 2020-06-06 21:20:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,493 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,964 KB
最終ジャッジ日時 2024-06-06 02:56:54
合計ジャッジ時間 25,836 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 972 ms
43,328 KB
testcase_01 AC 467 ms
43,336 KB
testcase_02 AC 1,493 ms
43,464 KB
testcase_03 AC 456 ms
43,692 KB
testcase_04 AC 451 ms
43,464 KB
testcase_05 AC 455 ms
43,564 KB
testcase_06 AC 461 ms
43,332 KB
testcase_07 AC 1,371 ms
43,588 KB
testcase_08 AC 1,363 ms
43,332 KB
testcase_09 AC 455 ms
43,588 KB
testcase_10 AC 1,349 ms
43,456 KB
testcase_11 AC 461 ms
43,456 KB
testcase_12 AC 461 ms
43,332 KB
testcase_13 AC 455 ms
43,464 KB
testcase_14 AC 457 ms
43,332 KB
testcase_15 AC 463 ms
43,584 KB
testcase_16 AC 473 ms
43,572 KB
testcase_17 AC 816 ms
43,588 KB
testcase_18 AC 563 ms
43,564 KB
testcase_19 AC 1,117 ms
43,456 KB
testcase_20 AC 1,285 ms
43,592 KB
testcase_21 AC 557 ms
43,588 KB
testcase_22 AC 646 ms
43,828 KB
testcase_23 AC 570 ms
43,332 KB
testcase_24 AC 1,418 ms
43,564 KB
testcase_25 AC 1,128 ms
43,588 KB
testcase_26 AC 973 ms
43,456 KB
testcase_27 AC 842 ms
43,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

C = int(input())
N = int(input())
A = np.array(list(map(int, input().split())))

MAX = C * 2
dp = np.full(C + 1, MAX)
dp[0] = 0
for i in range(C):
    dp[A[np.where(A <= C - i)] + i] = np.minimum(dp[A[np.where(A <= C - i)] + i], dp[i] + 1)
print(ans if (ans :=dp[C]) != MAX else -1)
0