結果

問題 No.1457 ツブ消ししとるなHard
ユーザー e869120e869120
提出日時 2021-03-31 21:17:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 897 bytes
コンパイル時間 814 ms
コンパイル使用メモリ 86,568 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-05-09 04:36:29
合計ジャッジ時間 1,706 ms
ジャッジサーバーID
(参考情報)
judge1 / 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 2 ms
5,376 KB
testcase_04 AC 22 ms
8,832 KB
testcase_05 AC 20 ms
8,448 KB
testcase_06 AC 21 ms
11,008 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 8 ms
5,376 KB
testcase_10 AC 8 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 20 ms
6,656 KB
testcase_13 AC 8 ms
5,376 KB
testcase_14 AC 8 ms
5,376 KB
testcase_15 AC 14 ms
5,760 KB
testcase_16 AC 20 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 21 ms
8,960 KB
testcase_20 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <map>
#include <cmath>
#include <queue>
#include <vector>
#include <string>
#include <algorithm>
#include <functional>
using namespace std;
#pragma warning (disable: 4996)

long long N, M, X, Y, Z;
long long A[1 << 18];
long long dp[55][55][2505];

int main() {
	cin >> N >> M >> X >> Y >> Z;
	for (int i = 0; i < N; i++) cin >> A[i];
	sort(A, A + N);
	reverse(A, A + N);
	if (A[M] >= X) {
		cout << "Handicapped" << endl;
		return 0;
	}

	dp[0][0][0] = 1;
	for (int i = 0; i < N; i++) {
		for (int j = 0; j <= N; j++) {
			for (int k = 0; k <= 2500; k++) {
				if (dp[i][j][k] == 0) continue;
				if (A[i] > Y) {
					dp[i + 1][j + 1][k + A[i]] += dp[i][j][k];
				}
				if (A[i] < X) {
					dp[i + 1][j][k] += dp[i][j][k];
				}
			}
		}
	}

	long long Answer = 0;
	for (int i = 1; i <= M; i++) {
		Answer += dp[N][i][i * Z];
	}
	cout << Answer << endl;
	return 0;
}
0