結果

問題 No.2869 yuusaan's Knapsacks
ユーザー vjudge1vjudge1
提出日時 2024-09-21 23:48:03
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,906 ms / 4,500 ms
コード長 1,259 bytes
コンパイル時間 4,936 ms
コンパイル使用メモリ 275,888 KB
実行使用メモリ 17,772 KB
最終ジャッジ日時 2024-09-21 23:48:22
合計ジャッジ時間 18,586 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 231 ms
10,160 KB
testcase_04 AC 231 ms
8,164 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 496 ms
15,816 KB
testcase_07 AC 290 ms
8,292 KB
testcase_08 AC 123 ms
6,944 KB
testcase_09 AC 37 ms
6,944 KB
testcase_10 AC 314 ms
11,520 KB
testcase_11 AC 274 ms
7,140 KB
testcase_12 AC 534 ms
14,060 KB
testcase_13 AC 243 ms
7,012 KB
testcase_14 AC 461 ms
10,724 KB
testcase_15 AC 224 ms
8,808 KB
testcase_16 AC 268 ms
11,008 KB
testcase_17 AC 1,157 ms
15,668 KB
testcase_18 AC 594 ms
15,744 KB
testcase_19 AC 578 ms
12,220 KB
testcase_20 AC 42 ms
6,944 KB
testcase_21 AC 852 ms
12,528 KB
testcase_22 AC 1,062 ms
12,540 KB
testcase_23 AC 111 ms
7,520 KB
testcase_24 AC 853 ms
14,592 KB
testcase_25 AC 141 ms
6,944 KB
testcase_26 AC 1,906 ms
12,716 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 413 ms
17,772 KB
testcase_29 AC 500 ms
16,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

const int N = 20;

int n, m, a[N], b[N], c[N], pre[N][1 << 16];
ll dp[N][1 << 16], ans;

void dfs(int i, int t, int x, int y, ll sum, ll s) {
    if (sum > a[x]) return ;
    if (i == m) {
        ll k = dp[x - 1][(y ^ t) & y] + s;
        if (k > dp[x][y]) {
            dp[x][y] = k, pre[x][y] = t;
        }
        return ;
    }
    dfs(i + 1, t, x, y, sum, s);
    if (y & (1 << i)) {
        dfs(i + 1, t | (1 << i), x, y, sum + c[i + 1], s + b[i + 1]);
    }
}

void print(int x, int y) {
    if (!x) return ;
    print(x - 1, (y ^ pre[x][y]) & y);
    vector<int> p;
    for (int i = 0; i < m; i++) {
        if (pre[x][y] & (1 << i)) p.push_back(i + 1);
    }
    cout << p.size() << ' ';
    for (int x : p) cout << x << ' ';
    cout << '\n';
}

int main() {
    ios::sync_with_stdio(0), cin.tie(0);
    cin >> n >> m;
    for (int i = 1; i <= n; i++) cin >> a[i];
    for (int i = 1; i <= m; i++) cin >> b[i] >> c[i];
    for (int i = 1; i <= n; i++) {
        for (int j = 0; j < (1 << m); j++) {
            dfs(0, 0, i, j, 0, 0);
            if (i == n && dp[i][j] > dp[i][ans]) ans = j;
        }
    }
    cout << dp[n][ans] << '\n', print(n, ans);
    return 0;
}
//////
0