結果

問題 No.115 遠足のおやつ
ユーザー llllll
提出日時 2018-04-10 18:46:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 56 ms / 5,000 ms
コード長 1,302 bytes
コンパイル時間 1,077 ms
コンパイル使用メモリ 99,844 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-10 23:51:39
合計ジャッジ時間 2,145 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 5 ms
5,376 KB
testcase_02 AC 4 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 21 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 5 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 13 ms
5,376 KB
testcase_16 AC 18 ms
5,376 KB
testcase_17 AC 6 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 4 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 5 ms
5,376 KB
testcase_24 AC 10 ms
5,376 KB
testcase_25 AC 6 ms
5,376 KB
testcase_26 AC 4 ms
5,376 KB
testcase_27 AC 5 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 5 ms
5,376 KB
testcase_30 AC 10 ms
5,376 KB
testcase_31 AC 4 ms
5,376 KB
testcase_32 AC 14 ms
5,376 KB
testcase_33 AC 3 ms
5,376 KB
testcase_34 AC 21 ms
5,376 KB
testcase_35 AC 7 ms
5,376 KB
testcase_36 AC 9 ms
5,376 KB
testcase_37 AC 14 ms
5,376 KB
testcase_38 AC 56 ms
5,376 KB
testcase_39 AC 56 ms
5,376 KB
testcase_40 AC 3 ms
5,376 KB
testcase_41 AC 3 ms
5,376 KB
testcase_42 AC 3 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cmath>
#include <cstring>
#include <deque>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <string>
#include <unordered_map>
#include <vector>

using namespace std;
using ll = long long;

const int inf = 1e9;

void display(vector<int> &v) {
    for (auto e : v) {
        cout << e << " ";
    }
    cout << endl;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    int N, D, K;
    cin >> N >> D >> K;
    vector<int> dp[15][1015];
    for (int i = 0; i < 15; i++) {
        for (int j = 0; j < 1015; j++) {
            dp[i][j] = {inf};
        }
    }
    dp[0][0] = {};

    for (int n = 1; n <= N; n++) {
        for (int j = D; j >= 0; j--) {
            if (j - n < 0)
                continue;
            for (int i = 0; i < K; i++) {
                vector<int> tmp = dp[i][j - n];
                tmp.push_back(n);
                if (dp[i + 1][j] > tmp) {
                    dp[i + 1][j] = tmp;
                }
            }
        }
    }

    if (dp[K][D][0] != inf) {
        for (int i = 0; i < K; i++) {
            if (i > 0)
                cout << " ";
            cout << dp[K][D][i];
        }
        cout << endl;
    } else {
        cout << -1 << endl;
    }

    return 0;
}
0