結果

問題 No.247 線形計画問題もどき
ユーザー pekempeypekempey
提出日時 2015-07-17 22:51:55
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 748 bytes
コンパイル時間 1,293 ms
コンパイル使用メモリ 157,808 KB
実行使用メモリ 42,788 KB
最終ジャッジ日時 2024-07-07 11:03:15
合計ジャッジ時間 2,596 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
24,448 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 47 ms
42,788 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 16 ms
42,752 KB
testcase_08 AC 15 ms
42,752 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 15 ms
42,752 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 15 ms
18,560 KB
testcase_18 AC 5 ms
7,808 KB
testcase_19 AC 23 ms
30,336 KB
testcase_20 AC 27 ms
36,096 KB
testcase_21 AC 6 ms
7,296 KB
testcase_22 AC 11 ms
11,264 KB
testcase_23 AC 8 ms
8,448 KB
testcase_24 AC 27 ms
42,496 KB
testcase_25 AC 23 ms
29,952 KB
testcase_26 AC 14 ms
24,448 KB
testcase_27 AC 14 ms
20,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, a) for (int i = 0; i < (a); i++)
#define rep2(i, a, b) for (int i = (a); i < (b); i++)
using namespace std;
typedef long long ll;
const ll inf = 1e9;
const ll mod = 1e9 + 7;

int C, N;
int dp[101][100001];
int a[100];

int solve() {
    rep (i, 101) rep (j, C + 1) dp[i][j] = inf;
    dp[0][0] = 0;

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

    return dp[N][C];
}

int main() {
    cin >> C >> N;
    rep (i, N) cin >> a[i];
    int ans = solve();
    if (ans == inf) ans = -1;
    cout << ans << endl;
}
0