結果

問題 No.1457 ツブ消ししとるなHard
ユーザー auauaauaua
提出日時 2021-04-01 17:32:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,469 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 175,148 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-05-10 01:51:31
合計ジャッジ時間 3,027 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 0 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 3 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 WA -
testcase_20 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
//#define int long long
#define REP(i,m,n) for(int i=(m);i<(n);i++)
#define rep(i,n) REP(i,0,n)
#define pb push_back
#define all(a) a.begin(),a.end()
#define rall(c) (c).rbegin(),(c).rend()
#define mp make_pair
#define endl '\n'
#define vec vector<ll>
#define mat vector<vector<ll> >
#define fi first
#define se second
#define double long double
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> pll;
//typedef long double ld;
typedef complex<double> Complex;
const ll INF=1e9+7;
const ll MOD=998244353;
const ll inf=INF*INF;
const ll mod=MOD;
const ll MAX=2000010;



signed main(){
    ll n,m,x,y,z;cin>>n>>m>>x>>y>>z;
    vector<ll>a(n);
    rep(i,n)cin>>a[i];
    vector<ll>b(0);
    ll sum=0,cnt=0;
    rep(i,n){
        if(a[i]<=y)continue;
        else if(a[i]>=x){
            sum+=a[i];
            cnt++;
        }else{
            b.pb(a[i]);
        }
    }
    if(cnt>m){
        cout<<"Handicapped"<<endl;
        return 0;
    }
    ll l=b.size();
    vector<vector<vector<ll> > >dp(l+1,vector<vector<ll> >(m+1,vector<ll>(251)));
    dp[0][cnt][sum]=1;
    rep(i,l){
        rep(j,m+1){
            rep(k,251){
                if(j<m&&k+b[i]<251)dp[i+1][j+1][k+b[i]]+=dp[i][j][k];
                dp[i+1][j][k]+=dp[i][j][k];
            }
        }
    }
    ll ans=0;
    rep(j,m+1){
        REP(k,1,251){
            if(k==j*z)ans+=dp[l][j][k];
        }
    }
    cout<<ans<<endl;
}
0