結果

問題 No.1861 Required Number
ユーザー kaichou243kaichou243
提出日時 2022-03-05 01:12:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 999 bytes
コンパイル時間 2,295 ms
コンパイル使用メモリ 209,960 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-07-19 00:15:31
合計ジャッジ時間 9,761 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 106 ms
6,912 KB
testcase_04 AC 107 ms
6,912 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 WA -
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 35 ms
5,376 KB
testcase_25 AC 81 ms
6,400 KB
testcase_26 AC 17 ms
5,376 KB
testcase_27 AC 32 ms
5,376 KB
testcase_28 AC 37 ms
5,376 KB
testcase_29 AC 24 ms
5,376 KB
testcase_30 AC 10 ms
5,376 KB
testcase_31 AC 92 ms
6,272 KB
testcase_32 AC 11 ms
5,376 KB
testcase_33 AC 60 ms
5,760 KB
testcase_34 AC 69 ms
6,016 KB
testcase_35 AC 69 ms
6,272 KB
testcase_36 AC 24 ms
5,376 KB
testcase_37 AC 37 ms
5,376 KB
testcase_38 AC 72 ms
6,016 KB
testcase_39 AC 43 ms
5,376 KB
testcase_40 AC 86 ms
6,528 KB
testcase_41 AC 82 ms
6,400 KB
testcase_42 AC 67 ms
5,888 KB
testcase_43 AC 38 ms
5,376 KB
testcase_44 AC 2 ms
5,376 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++;
        }
    }
    cout<<cnt<<endl;
}
0