結果

問題 No.247 線形計画問題もどき
ユーザー mkawa2mkawa2
提出日時 2020-01-30 17:09:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,196 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-07-07 12:46:45
合計ジャッジ時間 3,740 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
11,136 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 1,196 ms
14,464 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 36 ms
11,392 KB
testcase_08 AC 46 ms
14,592 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 26 ms
11,264 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 25 ms
10,752 KB
testcase_13 AC 24 ms
10,624 KB
testcase_14 AC 25 ms
10,752 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 25 ms
10,624 KB
testcase_17 AC 52 ms
10,880 KB
testcase_18 AC 46 ms
10,880 KB
testcase_19 AC 129 ms
11,136 KB
testcase_20 AC 287 ms
11,136 KB
testcase_21 AC 27 ms
10,624 KB
testcase_22 AC 34 ms
10,752 KB
testcase_23 AC 27 ms
11,008 KB
testcase_24 AC 276 ms
11,520 KB
testcase_25 AC 184 ms
11,008 KB
testcase_26 AC 44 ms
11,008 KB
testcase_27 AC 43 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))

def main():
    inf=10**9
    c=II()
    n=II()
    aa=LI()
    dp=[inf]*(c+1)
    dp[0]=0
    for a in aa:
        for i in range(c+1-a):
            pre=dp[i]
            if pre==inf:continue
            if pre+1<dp[i+a]:dp[i+a]=pre+1
    if dp[c]==inf:print(-1)
    else:print(dp[c])

main()
0