結果

問題 No.115 遠足のおやつ
ユーザー @abcde@abcde
提出日時 2019-06-05 00:11:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 1,244 bytes
コンパイル時間 1,541 ms
コンパイル使用メモリ 165,652 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-31 00:52:39
合計ジャッジ時間 3,176 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int dp[11];
int total;

// お菓子の買い方が見つかるかチェック.
// @param K: 合計個数.
// @param D: 合計金額.
// @param N: お菓子の最大金額.
// @param p: 調査対象の菓子の金額.
// @return ret:
//    true: お菓子の買い方が見つかった。
//   false: お菓子の買い方が見つからなかった.
bool buy(int K, int D, int N, int p){
    bool ret = false;
    for(int i = p + 1; i <= N - K + p; i++){
        if(total == D){
            ret = true;
            break;
        }
        total++;
        dp[p] = i;
    }
    return ret;
}

int main() {
    
    // 1. 入力情報取得.
    int N, D, K;
    cin >> N >> D >> K;
    
    // 2. 存在しないケース.
    total = K * (K + 1) / 2;
    if(D < total){
        cout << -1 << endl;
        return 0;
    }
    if(D > N * K - K * (K - 1) / 2){
        cout << -1 << endl;
        return 0;
    }
    
    // 3. 探索.
    for(int i = 1; i <= K; i++) dp[i] = i;
    // 後ろから確認.
    for(int i = K; i >= 1; i--){
        bool b = buy(K, D, N, i);
        if(b) break;
    }
    
    // 4. 出力.
    for(int i = 1; i <= K; i++) cout << dp[i] << " ";
    return 0;
    
}
0