結果

問題 No.115 遠足のおやつ
ユーザー RubikunRubikun
提出日時 2019-06-17 04:29:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,205 bytes
コンパイル時間 1,398 ms
コンパイル使用メモリ 169,960 KB
実行使用メモリ 10,656 KB
最終ジャッジ日時 2024-05-04 03:11:25
合計ジャッジ時間 8,359 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:32:19: warning: '*dp[-1][<unknown>][<unknown>]' may be used uninitialized [-Wmaybe-uninitialized]
   32 |     if(!dp[N][D][K]) cout<<-1<<endl;
      |         ~~~~~~~~~~^

ソースコード

diff #

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

typedef long long ll;
#define all(x) (x).begin(),(x).end()
const int mod=1000000007;

int main(){

    int N,D,K;cin>>N>>D>>K;
    bool dp[N+2][D+102][K+2];
    for(int i=0;i<N+2;i++){
        for(int j=0;j<D+102;j++){
            for(int k=0;k<K+2;k++){
                dp[i][j][k]=0;
            }
        }
    }
    for(int i=0;i<N+1;i++){
        dp[i][0][0]=1;
    }
    for(int i=0;i<=N;i++){
        for(int j=0;j<=D;j++){
            for(int k=0;k<=K;k++){
                if(dp[i][j][k]){
                    dp[i+1][j+i+1][k+1]=1;
                    dp[i+1][j][k]=1;
                }
            }
        }
    }
    if(!dp[N][D][K]) cout<<-1<<endl;
    else{
        vector<int> S;
        int start=N,cnt=K,sum=D;
        while(sum){
            for(int i=start;;i--){
                if(dp[i-1][sum-i][cnt-1]){
                    start=i-1;
                    cnt--;
                    sum-=i;
                    S.push_back(i);
                    break;
                }
            }
        }
        for(int i=0;i<S.size();i++){
            if(i) cout<<" ";
            cout<<S[S.size()-1-i];
        }
        cout<<endl;
    }
}
0