結果

問題 No.1457 ツブ消ししとるなHard
ユーザー SotaUNSotaUN
提出日時 2021-03-31 22:45:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,798 bytes
コンパイル時間 1,748 ms
コンパイル使用メモリ 170,128 KB
実行使用メモリ 53,376 KB
最終ジャッジ日時 2024-05-09 09:23:07
合計ジャッジ時間 3,851 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,120 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 43 ms
53,248 KB
testcase_03 AC 42 ms
53,248 KB
testcase_04 AC 89 ms
53,120 KB
testcase_05 AC 93 ms
53,248 KB
testcase_06 AC 97 ms
53,248 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 55 ms
53,248 KB
testcase_10 AC 55 ms
53,248 KB
testcase_11 AC 49 ms
53,248 KB
testcase_12 AC 74 ms
53,376 KB
testcase_13 AC 57 ms
53,248 KB
testcase_14 WA -
testcase_15 AC 62 ms
53,248 KB
testcase_16 AC 50 ms
53,248 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 44 ms
53,248 KB
testcase_19 AC 93 ms
53,248 KB
testcase_20 AC 46 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
int main(){
    //cout << -2 << endl;
    ll n,m,x,y,z;
    cin >> n >> m >> x >> y >> z;
    ll wa = 0;
    ll ka = 0;
    vector<ll> a;
    for(int i = 0;i < n;i++){
        ll in;
        cin >> in;
        if(in >= x)wa += in,ka++;
        else if(in > y){
            a.push_back(in);
        }
    }
    if(ka > m){
        cout << "Handicapped" << endl;
        return 0;
    }
    //cout << 1 << endl;
    //cout << a.size() << endl;
    ll dp[51][51][2501];//i番目まででjつ選んで合計がkの時の通り数
    for(int i = 0;i < 50;i++)for(int j = 0;j < 51;j++)for(int k = 0;k < 2501;k++)dp[i][j][k] = 0;
    dp[0][0][0] = 1;
    for(int i = 0;i < a.size();i++){
        //cout << a[i] << " ";
        if(i == 0)dp[i][1][a[i]] = 1;
        else{
            for(int j = 0;j < 2501;j++){
                for(int k = 0;k <= 50;k++){
                    dp[i][k][j] = dp[i - 1][k][j];
                    if(j - a[i] < 0 || k == 0)continue;
                    dp[i][k][j] += dp[i - 1][k - 1][j - a[i]];
                    //if(i == 2 && k == 1 && j == 4)cout << "!!!!!" << a[i] << " " << dp[i - 1][k - 1][j - a[i]] << endl;
                }
            }
        }
    }
    //cout << "% " << dp[0][0][0] << " " << dp[1][0][0] << " " << dp[2][0][0] << endl;
    //cout << endl;
    //cout << dp[1][2][8] << endl;
    //cout << ka << " " << wa << endl;
    ll res = 0;
    for(int i = 0;i < 51;i++){
        for(int j = 0;j < 2501;j++){
            if(i + ka <= 0)continue;
            if((i + ka) * z == wa + j){
                //cout << "!" << " " << i << " " << j << " " << dp[a.size() - 1][i][j] << endl;
                res += dp[a.size() - 1][i][j];
            }
        }
    }
    cout << res << endl;
}
0