結果

問題 No.1861 Required Number
ユーザー kaichou243kaichou243
提出日時 2022-03-05 01:14:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 107 ms / 2,500 ms
コード長 1,039 bytes
コンパイル時間 2,233 ms
コンパイル使用メモリ 209,592 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-19 00:18:32
合計ジャッジ時間 9,625 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 107 ms
6,948 KB
testcase_04 AC 105 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 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 2 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 34 ms
6,940 KB
testcase_25 AC 83 ms
6,940 KB
testcase_26 AC 18 ms
6,940 KB
testcase_27 AC 34 ms
6,940 KB
testcase_28 AC 37 ms
6,940 KB
testcase_29 AC 24 ms
6,944 KB
testcase_30 AC 10 ms
6,944 KB
testcase_31 AC 89 ms
6,940 KB
testcase_32 AC 12 ms
6,940 KB
testcase_33 AC 60 ms
6,940 KB
testcase_34 AC 69 ms
6,940 KB
testcase_35 AC 70 ms
6,944 KB
testcase_36 AC 24 ms
6,940 KB
testcase_37 AC 35 ms
6,940 KB
testcase_38 AC 70 ms
6,940 KB
testcase_39 AC 43 ms
6,940 KB
testcase_40 AC 85 ms
6,944 KB
testcase_41 AC 80 ms
6,940 KB
testcase_42 AC 64 ms
6,944 KB
testcase_43 AC 40 ms
6,940 KB
testcase_44 AC 2 ms
6,944 KB
04_evil_1.txt MLE -
04_evil_2.txt MLE -
04_evil_3.txt MLE -
04_evil_4.txt MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
int main(){
    ll n,k;
    cin>>n>>k;
    vector<ll> a(n);
    for(int i=0;i<n;i++) cin>>a[i];
    vector<vector<bool>> dpl(n+1,vector<bool>(k+1)),dpr(n+1,vector<bool>(k+1));
    dpl[0][0]=true;
    dpr[0][0]=true;
    for(int i=1;i<=n;i++){
        for(int j=0;j<=k;j++){
            if(a[i-1]<=j){
                dpl[i][j]=(dpl[i][j]|dpl[i-1][j-a[i-1]]);
            }
            dpl[i][j]=(dpl[i][j]|dpl[i-1][j]);
        }
    }
    reverse(a.begin(),a.end());
    for(int i=1;i<=n;i++){
        for(int j=0;j<=k;j++){
            if(a[i-1]<=j){
                dpr[i][j]=(dpr[i][j]|dpr[i-1][j-a[i-1]]);
            }
            dpr[i][j]=(dpr[i][j]|dpr[i-1][j]);
        }
    }
    ll cnt=0;
    for(int i=1;i<=n;i++){
        bool this_is=false;
        for(int j=0;j<=k;j++){
            if(dpl[i-1][j]&&dpr[n-i][k-j]) this_is=true;
        }
        if(!this_is){
            cnt++;
        }
    }
    if(!dpl[n][k]) cout<<-1<<endl;
    else cout<<cnt<<endl;
}
0