結果

問題 No.1457 ツブ消ししとるなHard
ユーザー shiomusubi496shiomusubi496
提出日時 2021-03-26 11:21:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 1,954 ms
コンパイル使用メモリ 178,948 KB
実行使用メモリ 50,048 KB
最終ジャッジ日時 2024-05-06 21:54:02
合計ジャッジ時間 2,928 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 29 ms
29,184 KB
testcase_05 AC 32 ms
32,896 KB
testcase_06 AC 32 ms
29,312 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 6 ms
7,040 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 10 ms
11,264 KB
testcase_13 AC 5 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 6 ms
8,448 KB
testcase_16 AC 51 ms
50,048 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 19 ms
19,328 KB
testcase_20 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
int main(){
    int N,M,X,Y,Z;
    cin>>N>>M>>X>>Y>>Z;
    int cnt=0;
    vector<int>A(N);
    for(int i=0;i<N;i++){
        cin>>A[i];
        if(A[i]>=X)cnt++;
    }
    if(cnt>M){
        puts("Handicapped");
        return 0;
    }
    vector<vector<vector<ll>>>dp(N+1,vector<vector<ll>>(M+1,vector<ll>(M*Z+1)));
    dp[0][0][0]=1;
    for(int i=0;i<N;i++){
        if(A[i]<X){
            dp[i+1]=dp[i];
        }
        if(A[i]>Y){
            for(int j=0;j<M;j++){
                for(int k=0;k+A[i]<=M*Z;k++){
                    dp[i+1][j+1][k+A[i]]+=dp[i][j][k];
                }
            }
        }
    }
    ll ans=0;
    for(int i=1;i<=M;i++){
        ans+=dp[N][i][i*Z];
    }
    cout<<ans<<endl;
}
0