結果
問題 | No.2686 商品券の使い道 |
ユーザー |
👑 |
提出日時 | 2024-03-21 00:13:34 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 114 ms / 3,000 ms |
コード長 | 2,060 bytes |
コンパイル時間 | 3,993 ms |
コンパイル使用メモリ | 250,880 KB |
最終ジャッジ日時 | 2025-02-20 10:18:05 |
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 48 |
ソースコード
#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" : " "); returnos;}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;}