結果

問題 No.247 線形計画問題もどき
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2022-12-31 05:54:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 752 bytes
コンパイル時間 1,101 ms
コンパイル使用メモリ 113,780 KB
実行使用メモリ 83,200 KB
最終ジャッジ日時 2024-11-26 04:20:47
合計ジャッジ時間 2,515 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
31,744 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 79 ms
83,200 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 5 ms
7,936 KB
testcase_08 AC 3 ms
5,504 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 4 ms
5,504 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 20 ms
21,888 KB
testcase_18 AC 3 ms
5,248 KB
testcase_19 AC 52 ms
57,088 KB
testcase_20 AC 63 ms
68,480 KB
testcase_21 AC 8 ms
10,368 KB
testcase_22 AC 17 ms
18,304 KB
testcase_23 AC 9 ms
11,648 KB
testcase_24 AC 64 ms
70,016 KB
testcase_25 AC 45 ms
51,712 KB
testcase_26 AC 11 ms
13,184 KB
testcase_27 AC 16 ms
18,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;

int main(){

    long long C, N;
    cin >> C >> N;
    vector<long long> a(N+1);
    for (int i=1; i<=N; i++) cin >> a[i];
    vector<vector<long long>> dp(N+1, vector<long long>(C+1, 1e18));
    for (int i=0; i<=N; i++) dp[i][0] = 0;

    for (int i=1; i<=N; i++){
        for (int j=1; j<=C; j++){
            dp[i][j] = min(dp[i][j], dp[i-1][j]);
            if (j >= a[i]) dp[i][j] = min(dp[i][j], dp[i][j-a[i]] + 1);
        }
    }

    cout << (dp[N][C] == 1e18 ? -1 : dp[N][C]) << endl;

    return 0;
}
0