結果

問題 No.115 遠足のおやつ
ユーザー mencottonmencotton
提出日時 2020-11-02 23:36:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 18 ms / 5,000 ms
コード長 1,081 bytes
コンパイル時間 800 ms
コンパイル使用メモリ 78,148 KB
実行使用メモリ 10,296 KB
最終ジャッジ日時 2023-08-31 01:00:32
合計ジャッジ時間 2,505 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 3 ms
4,376 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 7 ms
5,868 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 3 ms
4,504 KB
testcase_09 AC 5 ms
5,692 KB
testcase_10 AC 6 ms
5,976 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 3 ms
4,480 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 6 ms
5,000 KB
testcase_16 AC 6 ms
5,468 KB
testcase_17 AC 3 ms
4,376 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 3 ms
4,380 KB
testcase_22 AC 5 ms
4,852 KB
testcase_23 AC 2 ms
4,376 KB
testcase_24 AC 4 ms
4,536 KB
testcase_25 AC 3 ms
4,376 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 2 ms
4,376 KB
testcase_29 AC 3 ms
4,376 KB
testcase_30 AC 4 ms
4,688 KB
testcase_31 AC 4 ms
4,588 KB
testcase_32 AC 5 ms
5,196 KB
testcase_33 AC 2 ms
4,376 KB
testcase_34 AC 7 ms
5,900 KB
testcase_35 AC 4 ms
4,776 KB
testcase_36 AC 3 ms
4,376 KB
testcase_37 AC 6 ms
5,520 KB
testcase_38 AC 18 ms
10,028 KB
testcase_39 AC 18 ms
10,296 KB
testcase_40 AC 2 ms
4,380 KB
testcase_41 AC 1 ms
4,376 KB
testcase_42 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;
using ll = long long;

int main() {
    int n, d, k;
    cin >> n >> d >> k;

    vector<vector<vector<bool>>> dp(n + 1, vector<vector<bool>>(d + 1, vector<bool>(k + 1)));
    dp[n][d][k] = true;
    for (int i = n; i >= 0; i--) {
        for (int j = d; j >= 0; j--) {
            for (int l = k; l >= 0; l--) {
                if (i > 0 && dp[i][j][l]) {
                    dp[i - 1][j][l] = true;
                }
                if (i > 0 && j >= i && l > 0 && dp[i][j][l]) {
                    dp[i - 1][j - i][l - 1] = true;
                }
            }
        }
    }

    if (!dp[0][0][0]) {
        cout << -1 << endl;
        return 0;
    }

    bool first = true;
    int cost = 0, count = 0;
    for (int i = 0; i < n; i++) {
        if (dp[i + 1][cost + i + 1][count + 1]) {
            if (!first)cout << " ";
            first = false;
            cout << i + 1;
            cost += i + 1, count++;
        }
        if (cost == d)break;
    }
    cout << endl;
    return 0;
}
0