結果

問題 No.1457 ツブ消ししとるなHard
ユーザー shiomusubi496shiomusubi496
提出日時 2021-03-26 11:21:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 784 bytes
コンパイル時間 1,894 ms
コンパイル使用メモリ 179,036 KB
実行使用メモリ 49,920 KB
最終ジャッジ日時 2024-11-29 08:13:53
合計ジャッジ時間 2,675 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 29 ms
29,184 KB
testcase_05 AC 33 ms
32,768 KB
testcase_06 AC 29 ms
29,056 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 5 ms
6,912 KB
testcase_10 AC 4 ms
5,504 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 9 ms
11,264 KB
testcase_13 AC 4 ms
5,504 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 6 ms
8,320 KB
testcase_16 AC 47 ms
49,920 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 17 ms
19,328 KB
testcase_20 AC 2 ms
5,248 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