結果

問題 No.2686 商品券の使い道
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-03-26 13:28:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,427 bytes
コンパイル時間 2,062 ms
コンパイル使用メモリ 204,540 KB
実行使用メモリ 40,192 KB
最終ジャッジ日時 2024-09-30 14:16:30
合計ジャッジ時間 6,733 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 33 ms
12,416 KB
testcase_03 AC 32 ms
12,416 KB
testcase_04 AC 31 ms
12,416 KB
testcase_05 AC 32 ms
12,416 KB
testcase_06 AC 32 ms
12,416 KB
testcase_07 AC 32 ms
12,416 KB
testcase_08 AC 31 ms
12,544 KB
testcase_09 AC 31 ms
12,416 KB
testcase_10 AC 33 ms
12,416 KB
testcase_11 AC 31 ms
12,416 KB
testcase_12 AC 32 ms
12,416 KB
testcase_13 AC 32 ms
12,416 KB
testcase_14 AC 32 ms
12,416 KB
testcase_15 AC 31 ms
12,288 KB
testcase_16 AC 30 ms
12,416 KB
testcase_17 AC 31 ms
12,416 KB
testcase_18 AC 30 ms
12,288 KB
testcase_19 AC 31 ms
12,416 KB
testcase_20 AC 31 ms
12,416 KB
testcase_21 AC 31 ms
12,544 KB
testcase_22 AC 31 ms
12,416 KB
testcase_23 AC 31 ms
12,288 KB
testcase_24 AC 31 ms
12,416 KB
testcase_25 AC 31 ms
12,288 KB
testcase_26 AC 32 ms
12,416 KB
testcase_27 AC 31 ms
12,416 KB
testcase_28 AC 32 ms
12,416 KB
testcase_29 AC 128 ms
40,192 KB
testcase_30 WA -
testcase_31 AC 127 ms
40,092 KB
testcase_32 AC 121 ms
40,060 KB
testcase_33 AC 126 ms
40,064 KB
testcase_34 AC 127 ms
40,192 KB
testcase_35 AC 130 ms
40,064 KB
testcase_36 AC 127 ms
40,064 KB
testcase_37 AC 128 ms
40,064 KB
testcase_38 AC 127 ms
40,064 KB
testcase_39 AC 128 ms
40,064 KB
testcase_40 AC 130 ms
40,184 KB
testcase_41 AC 129 ms
40,064 KB
testcase_42 AC 129 ms
39,936 KB
testcase_43 AC 128 ms
40,064 KB
testcase_44 AC 129 ms
39,936 KB
testcase_45 AC 128 ms
39,936 KB
testcase_46 AC 128 ms
40,064 KB
evil_random20_1.txt AC 128 ms
40,064 KB
evil_random20_2.txt AC 129 ms
40,128 KB
evil_random20_3.txt AC 129 ms
40,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
void fast_io() {
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
}

int main() {
    fast_io();
    int n;
    long long m, q;
    cin >> n >> m >> q;
    vector<long long> a(n), b(n);
    for (int i = 0; i < n; i++) {
        cin >> a[i] >> b[i];
    }
    vector<long long> asum(1 << n), bsum(1 << n);
    vector<long long> f(1 << n), g(1 << n);
    for (int i = 0; i < (1 << n); i++) {
        for (int j = 0; j < n; j++) {
            if (i & (1 << j)) {
                asum[i] += a[j];
                bsum[i] += b[j];
            }
        }
        if (asum[i] <= m) {
            f[i] = 1;
        }
        if (asum[i] <= q) {
            g[i] = 1;
        }
    }
    for (int i = 0; i < n; i++) {
        for (int x = 0; x < (1 << n); x++) {
            if (x & (1 << i)) {
                f[x] = f[x] + f[x ^ (1 << i)];
                g[x] = g[x] + g[x ^ (1 << i)];
            }
        }
    }
    vector<int> h(1 << n);
    for (int i = 0; i < (1 << n); i++) {
        h[i] = f[i] * g[i];
    }
    for (int i = 0; i < n; i++) {
        for (int x = 0; x < (1 << n); x++) {
            if (x & (1 << i)) {
                h[x] = h[x] - h[x ^ (1 << i)];
            }
        }
    }
    long long ans = 0;
    for (int i = 0; i < (1 << n); i++) {
        if (h[i] > 0) {
            ans = max(ans, bsum[i]);
        }
    }
    cout << ans << endl;
}
0