結果

問題 No.247 線形計画問題もどき
ユーザー machymachy
提出日時 2015-07-17 23:44:52
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 972 bytes
コンパイル時間 588 ms
コンパイル使用メモリ 61,912 KB
実行使用メモリ 42,880 KB
最終ジャッジ日時 2024-07-07 11:04:47
合計ジャッジ時間 2,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
21,760 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 56 ms
42,880 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 15 ms
18,432 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 36 ms
33,024 KB
testcase_20 AC 43 ms
36,992 KB
testcase_21 AC 13 ms
26,752 KB
testcase_22 AC 16 ms
27,648 KB
testcase_23 AC 11 ms
24,192 KB
testcase_24 AC 42 ms
36,608 KB
testcase_25 AC 34 ms
30,720 KB
testcase_26 AC 7 ms
9,216 KB
testcase_27 AC 12 ms
14,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int dp[101][100001] = {1000*1000*1000};

int main(){
    int C, N;
    cin >> C >> N;
    vector<int> a(N);
    for(int i = 0; i < N; i++){
        cin >> a[i];
    }
    for(int i = 0; i <= N; i++){
        for(int j = 0; j <= C; j++){
            dp[i][j] = 1000*1000*1000;
        }
    }
    dp[0][0] = 0;
    for(int i = 0; i < N; i++){
        for(int j = 0; j <= C; j++){
            dp[i+1][j] = dp[i][j];
        }
        for(int j = 0; j < a[i]; j++){
            int cost = dp[i][j];
            for(int k = j; k <= C; k += a[i]){
                dp[i+1][k] = min(dp[i+1][k], cost);
                cost = min(1000*1000*1000, dp[i+1][k] + 1);
                //cerr << i << " : " << k << " : " << dp[i+1][k] << endl;
            }
        }
    }
    if(dp[N][C] == 1000*1000*1000){
        cout << -1 << endl;
    }else{
        cout << dp[N][C] << endl;
    }
    return 0;
}
0