結果

問題 No.2686 商品券の使い道
ユーザー 00 Sakuda00 Sakuda
提出日時 2024-04-05 00:44:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 786 ms / 3,000 ms
コード長 875 bytes
コンパイル時間 2,480 ms
コンパイル使用メモリ 207,036 KB
実行使用メモリ 208,184 KB
最終ジャッジ日時 2024-10-01 00:43:27
合計ジャッジ時間 23,539 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 156 ms
50,292 KB
testcase_03 AC 153 ms
50,272 KB
testcase_04 AC 153 ms
50,456 KB
testcase_05 AC 155 ms
50,312 KB
testcase_06 AC 154 ms
50,384 KB
testcase_07 AC 151 ms
50,360 KB
testcase_08 AC 151 ms
50,376 KB
testcase_09 AC 152 ms
50,396 KB
testcase_10 AC 149 ms
50,272 KB
testcase_11 AC 149 ms
50,296 KB
testcase_12 AC 149 ms
50,376 KB
testcase_13 AC 150 ms
50,264 KB
testcase_14 AC 151 ms
50,268 KB
testcase_15 AC 157 ms
50,360 KB
testcase_16 AC 153 ms
50,336 KB
testcase_17 AC 156 ms
50,272 KB
testcase_18 AC 153 ms
50,268 KB
testcase_19 AC 153 ms
50,352 KB
testcase_20 AC 161 ms
50,348 KB
testcase_21 AC 162 ms
50,264 KB
testcase_22 AC 153 ms
50,292 KB
testcase_23 AC 150 ms
50,280 KB
testcase_24 AC 154 ms
50,348 KB
testcase_25 AC 153 ms
50,264 KB
testcase_26 AC 151 ms
50,276 KB
testcase_27 AC 156 ms
50,316 KB
testcase_28 AC 154 ms
50,328 KB
testcase_29 AC 715 ms
208,020 KB
testcase_30 AC 780 ms
208,036 KB
testcase_31 AC 779 ms
207,968 KB
testcase_32 AC 786 ms
208,008 KB
testcase_33 AC 779 ms
208,076 KB
testcase_34 AC 715 ms
208,184 KB
testcase_35 AC 711 ms
207,976 KB
testcase_36 AC 713 ms
208,076 KB
testcase_37 AC 712 ms
208,012 KB
testcase_38 AC 722 ms
208,004 KB
testcase_39 AC 718 ms
208,068 KB
testcase_40 AC 714 ms
208,144 KB
testcase_41 AC 715 ms
208,004 KB
testcase_42 AC 774 ms
207,968 KB
testcase_43 AC 723 ms
208,036 KB
testcase_44 AC 714 ms
208,052 KB
testcase_45 AC 714 ms
208,016 KB
testcase_46 AC 711 ms
207,968 KB
evil_random20_1.txt AC 768 ms
208,052 KB
evil_random20_2.txt AC 754 ms
208,028 KB
evil_random20_3.txt AC 709 ms
208,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main() {
	int N;ll M, Q;cin >> N >> M >> Q;
	vector<ll> A(N), B(N);
	for (int i = 0;i < N;i++) cin >> A[i] >> B[i];
	vector<vector<ll>> dp(1 << N, vector<ll>(N + 1, 0));
	for (int bit = 0;bit < (1 << N);bit++) {
		ll m = 0;ll v = 0;
		for (int i = 0;i < N;i++) if (bit & (1 << i)) m += A[i],v += B[i];
		if (m <= Q) dp[bit][0] = v;
	}
	for (int i = 0;i < N;i++) for (int bit = 0;bit < (1 << N);bit++) {
		if (bit & (1 << i)) {
			dp[bit][i + 1] = max(dp[bit][i], dp[bit & ~(1 << i)][i]);
		} else {
			dp[bit][i + 1] = dp[bit][i];
		}
	}
	ll ans = 0;
	for (int bit = 0;bit < (1 << N);bit++) {
		ll m = 0;ll v = 0;
		for (int i = 0;i < N;i++) if (bit & (1 << i)) m += A[i],v += B[i];
		if (m > M) continue;
		int tbit = ((1 << N) - 1) ^ bit;
		ans = max(ans, dp[tbit][N] + v);
	}
	cout << ans << endl;
}
0