結果

問題 No.2686 商品券の使い道
ユーザー shinchanshinchan
提出日時 2024-03-21 00:42:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 287 ms / 3,000 ms
コード長 1,192 bytes
コンパイル時間 2,164 ms
コンパイル使用メモリ 205,068 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-09-30 09:50:53
合計ジャッジ時間 10,287 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 60 ms
7,296 KB
testcase_03 AC 60 ms
7,296 KB
testcase_04 AC 59 ms
7,296 KB
testcase_05 AC 60 ms
7,296 KB
testcase_06 AC 60 ms
7,168 KB
testcase_07 AC 59 ms
7,296 KB
testcase_08 AC 60 ms
7,296 KB
testcase_09 AC 60 ms
7,168 KB
testcase_10 AC 59 ms
7,296 KB
testcase_11 AC 59 ms
7,296 KB
testcase_12 AC 58 ms
7,296 KB
testcase_13 AC 60 ms
7,296 KB
testcase_14 AC 60 ms
7,296 KB
testcase_15 AC 60 ms
7,296 KB
testcase_16 AC 60 ms
7,296 KB
testcase_17 AC 59 ms
7,296 KB
testcase_18 AC 59 ms
7,296 KB
testcase_19 AC 59 ms
7,296 KB
testcase_20 AC 60 ms
7,168 KB
testcase_21 AC 60 ms
7,296 KB
testcase_22 AC 60 ms
7,424 KB
testcase_23 AC 58 ms
7,296 KB
testcase_24 AC 60 ms
7,296 KB
testcase_25 AC 60 ms
7,296 KB
testcase_26 AC 59 ms
7,296 KB
testcase_27 AC 60 ms
7,296 KB
testcase_28 AC 60 ms
7,296 KB
testcase_29 AC 245 ms
19,612 KB
testcase_30 AC 244 ms
19,584 KB
testcase_31 AC 245 ms
19,584 KB
testcase_32 AC 244 ms
19,584 KB
testcase_33 AC 243 ms
19,584 KB
testcase_34 AC 245 ms
19,584 KB
testcase_35 AC 245 ms
19,456 KB
testcase_36 AC 287 ms
19,712 KB
testcase_37 AC 282 ms
19,564 KB
testcase_38 AC 280 ms
19,584 KB
testcase_39 AC 280 ms
19,584 KB
testcase_40 AC 282 ms
19,584 KB
testcase_41 AC 286 ms
19,584 KB
testcase_42 AC 280 ms
19,600 KB
testcase_43 AC 242 ms
19,472 KB
testcase_44 AC 244 ms
19,456 KB
testcase_45 AC 242 ms
19,584 KB
testcase_46 AC 246 ms
19,456 KB
evil_random20_1.txt AC 245 ms
19,584 KB
evil_random20_2.txt AC 248 ms
19,584 KB
evil_random20_3.txt AC 243 ms
19,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define all(v) (v).begin(),(v).end()
#define pb(a) push_back(a)
#define rep(i, n) for(int i=0;i<n;i++)
#define foa(e, v) for(auto&& e : v)
using ll = long long;
const ll MOD7 = 1000000007, MOD998 = 998244353, INF = (1LL << 60);
#define dout(a) cout<<fixed<<setprecision(10)<<a<<endl;

void chmax(ll &a, ll b) { a = max(a, b); }
vector<ll> solve(ll n, ll x, vector<ll> &w, vector<ll> &v) {
    ll mask = 1LL << n;
    vector<ll> dp(mask, 0);
    rep(bit, mask) {
        ll sumx = 0, sum = 0;
        rep(i, n) if(bit >> i & 1) {
            sumx += w[i];
            sum += v[i];
        }
        if(sumx <= x) dp[bit] = sum;
    }
    rep(bit, mask) {
        rep(i, n) if(bit >> i & 1) {
            chmax(dp[bit], dp[bit ^ (1 << i)]);
        }
    }
    return dp;
}
int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll n, m, q;
    cin >> n >> m >> q;
    vector<ll> a(n), b(n);
    rep(i, n) cin >> a[i] >> b[i];
    auto dp1 = solve(n, m, a, b);
    auto dp2 = solve(n, q, a, b);
    ll ans = 0;
    ll mask = (1LL << n);
    rep(i, mask) chmax(ans, dp1[i] + dp2[(mask - 1) ^ i]);
    cout << ans << endl;
    return 0;
}
0