結果

問題 No.1457 ツブ消ししとるなHard
ユーザー ktr216ktr216
提出日時 2021-03-31 22:05:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 48 ms / 2,000 ms
コード長 1,198 bytes
コンパイル時間 1,470 ms
コンパイル使用メモリ 175,888 KB
実行使用メモリ 56,320 KB
最終ジャッジ日時 2024-05-09 07:56:30
合計ジャッジ時間 2,341 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 48 ms
56,192 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 46 ms
56,320 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 5 ms
7,296 KB
testcase_10 AC 4 ms
7,296 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 16 ms
22,400 KB
testcase_13 AC 8 ms
12,288 KB
testcase_14 AC 3 ms
5,504 KB
testcase_15 AC 8 ms
12,672 KB
testcase_16 AC 8 ms
13,184 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 43 ms
51,072 KB
testcase_20 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
using namespace std;

typedef long long ll;

int main() {
    int N, M, X, Y, Z, base = 0, C = 0;
    cin >> N >> M >> X >> Y >> Z;
    vector<int> A(N), B(0);
    rep(i, N) cin >> A[i];
    rep(i, N) {
        if (A[i] <= Y) continue;
        if (A[i] >= X) {
            base += A[i];
            C++;
        } else {
            B.push_back(A[i]);
        }
    }
    if (M < C) {
        cout << "Handicapped\n";
        return 0;
    }
    N = B.size();
    vector<vector<vector<ll>>> dp(N + 1, vector<vector<ll>>(M - C + 2, vector<ll>(2501, 0)));
    dp[0][0][base] = 1;
    rep(i, N) {
        rep(j, M - C + 1) {
            rep(k, 2501) {
                dp[i + 1][j][k] += dp[i][j][k];
                dp[i + 1][j + 1][k + B[i]] += dp[i][j][k];
            }
        }
    }
    ll ans = 0;
    for (int j = 1; j <= M - C; j++) {
        ans += dp[N][j][Z * (C + j)];
    }
    cout << ans << "\n";
    /*
    rep(i, N + 1) {
        rep(j, M - C + 2) {
            rep(k, 22) {
                cout << dp[i][j][k] << " ";
            }
            cout << "\n";
        }
        cout << "\n";
    }
    */
}
0