結果

問題 No.1457 ツブ消ししとるなHard
ユーザー karinohitokarinohito
提出日時 2024-09-22 15:14:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 983 bytes
コンパイル時間 2,316 ms
コンパイル使用メモリ 209,708 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 15:14:35
合計ジャッジ時間 3,067 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 27 ms
6,944 KB
testcase_05 AC 23 ms
6,944 KB
testcase_06 AC 26 ms
6,944 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,940 KB
testcase_11 WA -
testcase_12 AC 9 ms
6,940 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 27 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){

    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll N,M,X,Y,Z;
    cin>>N>>M>>X>>Y>>Z;
    ll BG=0,BGS=0;
    vector<ll> A;
    for(int i=0;i<N;i++){
        ll a;
        cin>>a;
        if(a>=X){
            BG++;
            BGS+=a;
        }
        else if(a>=Y)A.push_back(a);
    }
    if(BG>M){
        cout<<"Handicapped"<<endl;
        return 0;
    }
    N=A.size();
    vector<vector<ll>> DP(N+1,vector<ll>(N*50+1,0));
    DP[0][0]=1;
    for(int i=0;i<N;i++){
        auto NDP=DP;
        for(int j=0;j<N;j++){
            for(int s=0;s+A[i]<=N*50;s++){
                NDP[j+1][s+A[i]]+=DP[j][s];
            }
        }
        swap(DP,NDP);
    }
    ll an=0;
    for(int i=0;i<=N;i++){
        for(ll s=0;s<=N*50;s++){
            ll n=i+BG;
            if(n>M||n==0)continue;
            ll sm=s+BGS;
            if(n*Z==sm)an+=DP[i][s];
        }
    }
    cout<<an<<endl;
}
0