結果

問題 No.247 線形計画問題もどき
ユーザー ynyn
提出日時 2016-08-31 22:44:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 492 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 158,684 KB
最終ジャッジ日時 2024-11-14 13:39:23
合計ジャッジ時間 5,488 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 44 ms
60,416 KB
testcase_02 AC 1,059 ms
158,684 KB
testcase_03 AC 37 ms
53,212 KB
testcase_04 AC 37 ms
52,068 KB
testcase_05 AC 38 ms
53,152 KB
testcase_06 AC 38 ms
52,404 KB
testcase_07 AC 56 ms
72,260 KB
testcase_08 AC 49 ms
68,936 KB
testcase_09 AC 38 ms
52,216 KB
testcase_10 AC 46 ms
68,924 KB
testcase_11 AC 37 ms
52,924 KB
testcase_12 AC 37 ms
52,528 KB
testcase_13 AC 37 ms
53,300 KB
testcase_14 AC 37 ms
53,344 KB
testcase_15 AC 38 ms
53,036 KB
testcase_16 AC 38 ms
52,648 KB
testcase_17 WA -
testcase_18 AC 53 ms
65,296 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 75 ms
69,496 KB
testcase_22 WA -
testcase_23 AC 83 ms
71,388 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 103 ms
89,716 KB
testcase_27 AC 122 ms
90,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

c = int(input())
n = int(input())
a = [0] + list(map(int,input().split()))

dp = [[10 ** 10] * (n + 1) for i in range(c + 1)]
for i in range(n + 1):
    dp[0][i] = 0

for i in range(1, n + 1):
    for j in range(c + 1):
        if j + a[i] <= c:
            dp[j + a[i]][i] = min(dp[j + a[i]][i], dp[j + a[i]][i-1], dp[j][i] + 1, dp[j][i - 1] + 1)

    if a[i] > c:
        for j in range(c + 1):
            dp[j][i] = dp[j][i-1]

if dp[c][n] >= 10 ** 10:
    dp[c][n] = -1

print(dp[c][n])
0