結果

問題 No.2686 商品券の使い道
ユーザー 👑 binapbinap
提出日時 2024-03-21 00:13:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 92 ms / 3,000 ms
コード長 2,060 bytes
コンパイル時間 3,746 ms
コンパイル使用メモリ 263,216 KB
実行使用メモリ 19,824 KB
最終ジャッジ日時 2024-09-30 09:45:51
合計ジャッジ時間 7,391 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 26 ms
7,424 KB
testcase_03 AC 24 ms
7,296 KB
testcase_04 AC 24 ms
7,296 KB
testcase_05 AC 23 ms
7,296 KB
testcase_06 AC 24 ms
7,296 KB
testcase_07 AC 24 ms
7,296 KB
testcase_08 AC 25 ms
7,296 KB
testcase_09 AC 24 ms
7,424 KB
testcase_10 AC 24 ms
7,424 KB
testcase_11 AC 23 ms
7,424 KB
testcase_12 AC 24 ms
7,424 KB
testcase_13 AC 23 ms
7,296 KB
testcase_14 AC 22 ms
7,424 KB
testcase_15 AC 23 ms
7,296 KB
testcase_16 AC 23 ms
7,424 KB
testcase_17 AC 23 ms
7,296 KB
testcase_18 AC 24 ms
7,296 KB
testcase_19 AC 23 ms
7,424 KB
testcase_20 AC 23 ms
7,424 KB
testcase_21 AC 23 ms
7,424 KB
testcase_22 AC 23 ms
7,296 KB
testcase_23 AC 23 ms
7,296 KB
testcase_24 AC 24 ms
7,424 KB
testcase_25 AC 24 ms
7,296 KB
testcase_26 AC 23 ms
7,296 KB
testcase_27 AC 24 ms
7,424 KB
testcase_28 AC 23 ms
7,424 KB
testcase_29 AC 92 ms
19,776 KB
testcase_30 AC 91 ms
19,712 KB
testcase_31 AC 89 ms
19,704 KB
testcase_32 AC 90 ms
19,824 KB
testcase_33 AC 90 ms
19,720 KB
testcase_34 AC 90 ms
19,616 KB
testcase_35 AC 92 ms
19,644 KB
testcase_36 AC 92 ms
19,692 KB
testcase_37 AC 88 ms
19,696 KB
testcase_38 AC 89 ms
19,620 KB
testcase_39 AC 89 ms
19,660 KB
testcase_40 AC 90 ms
19,552 KB
testcase_41 AC 89 ms
19,640 KB
testcase_42 AC 91 ms
19,712 KB
testcase_43 AC 91 ms
19,712 KB
testcase_44 AC 88 ms
19,712 KB
testcase_45 AC 90 ms
19,712 KB
testcase_46 AC 90 ms
19,644 KB
evil_random20_1.txt AC 93 ms
19,584 KB
evil_random20_2.txt AC 93 ms
19,712 KB
evil_random20_3.txt AC 92 ms
19,584 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