結果

問題 No.2686 商品券の使い道
ユーザー binapbinap
提出日時 2024-03-21 00:13:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 111 ms / 3,000 ms
コード長 2,060 bytes
コンパイル時間 4,330 ms
コンパイル使用メモリ 263,020 KB
実行使用メモリ 19,820 KB
最終ジャッジ日時 2024-03-21 00:13:44
合計ジャッジ時間 9,502 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,548 KB
testcase_01 AC 2 ms
6,548 KB
testcase_02 AC 28 ms
7,552 KB
testcase_03 AC 28 ms
7,552 KB
testcase_04 AC 28 ms
7,552 KB
testcase_05 AC 27 ms
7,552 KB
testcase_06 AC 27 ms
7,552 KB
testcase_07 AC 27 ms
7,552 KB
testcase_08 AC 27 ms
7,552 KB
testcase_09 AC 27 ms
7,552 KB
testcase_10 AC 27 ms
7,552 KB
testcase_11 AC 27 ms
7,552 KB
testcase_12 AC 26 ms
7,552 KB
testcase_13 AC 27 ms
7,552 KB
testcase_14 AC 27 ms
7,552 KB
testcase_15 AC 28 ms
7,552 KB
testcase_16 AC 27 ms
7,552 KB
testcase_17 AC 27 ms
7,552 KB
testcase_18 AC 39 ms
7,552 KB
testcase_19 AC 27 ms
7,552 KB
testcase_20 AC 28 ms
7,552 KB
testcase_21 AC 27 ms
7,552 KB
testcase_22 AC 28 ms
7,552 KB
testcase_23 AC 28 ms
7,552 KB
testcase_24 AC 27 ms
7,552 KB
testcase_25 AC 27 ms
7,552 KB
testcase_26 AC 27 ms
7,552 KB
testcase_27 AC 27 ms
7,552 KB
testcase_28 AC 27 ms
7,552 KB
testcase_29 AC 108 ms
19,820 KB
testcase_30 AC 105 ms
19,820 KB
testcase_31 AC 107 ms
19,820 KB
testcase_32 AC 108 ms
19,820 KB
testcase_33 AC 105 ms
19,820 KB
testcase_34 AC 107 ms
19,820 KB
testcase_35 AC 109 ms
19,820 KB
testcase_36 AC 103 ms
19,820 KB
testcase_37 AC 104 ms
19,820 KB
testcase_38 AC 104 ms
19,820 KB
testcase_39 AC 104 ms
19,820 KB
testcase_40 AC 106 ms
19,820 KB
testcase_41 AC 107 ms
19,820 KB
testcase_42 AC 110 ms
19,820 KB
testcase_43 AC 108 ms
19,820 KB
testcase_44 AC 104 ms
19,820 KB
testcase_45 AC 111 ms
19,820 KB
testcase_46 AC 109 ms
19,820 KB
evil_random20_1.txt AC 107 ms
19,820 KB
evil_random20_2.txt AC 108 ms
19,820 KB
evil_random20_3.txt AC 113 ms
19,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef vector<int> vi;
typedef vector<long long> vl;
typedef vector<vector<int>> vvi;
typedef vector<vector<long long>> vvl;
typedef long double ld;
typedef pair<int, int> P;

ostream& operator<<(ostream& os, const modint& a) {os << a.val(); return os;}
template <int m> ostream& operator<<(ostream& os, const static_modint<m>& a) {os << a.val(); return os;}
template <int m> ostream& operator<<(ostream& os, const dynamic_modint<m>& a) {os << a.val(); return os;}
template<typename T> istream& operator>>(istream& is, vector<T>& v){int n = v.size(); assert(n > 0); rep(i, n) is >> v[i]; return is;}
template<typename U, typename T> ostream& operator<<(ostream& os, const pair<U, T>& p){os << p.first << ' ' << p.second; return os;}
template<typename T> ostream& operator<<(ostream& os, const vector<T>& v){int n = v.size(); rep(i, n) os << v[i] << (i == n - 1 ? "\n" : " "); return os;}
template<typename T> ostream& operator<<(ostream& os, const vector<vector<T>>& v){int n = v.size(); rep(i, n) os << v[i] << (i == n - 1 ? "\n" : ""); return os;}

template<typename T> void chmin(T& a, T b){a = min(a, b);}
template<typename T> void chmax(T& a, T b){a = max(a, b);}

int main(){
	int n;
	long long x, y;
	cin >> n >> x >> y;
	vector<long long> a(n), b(n);
	rep(i, n) cin >> a[i] >> b[i];
	vector<long long> dp_x(1 << n);
	vector<long long> dp_y(1 << n);
	rep(bit, 1 << n){
		long long a_sum = 0;
		long long b_sum = 0;
		rep(i, n){
			if((bit >> i) & 1){
				a_sum += a[i];
				b_sum += b[i];
			}
		}
		if(a_sum <= x) dp_x[bit] = b_sum;
		if(a_sum <= y) dp_y[bit] = b_sum;
	}
	rep(i, n) rep(bit, 1 << n){
		if((bit >> i) & 1) chmax(dp_x[bit], dp_x[bit - (1 << i)]);
		if((bit >> i) & 1) chmax(dp_y[bit], dp_y[bit - (1 << i)]);
	}
	long long ans = 0;
	rep(bit, 1 << n){
		long long tmp = 0;
		tmp += dp_x[bit];
		tmp += dp_y[((1 << n) - 1) - bit];
		chmax(ans, tmp);
	}
	cout << ans << "\n";
	return 0;
}
0