結果

問題 No.2869 yuusaan's Knapsacks
ユーザー vjudge1vjudge1
提出日時 2024-09-21 23:48:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,913 ms / 4,500 ms
コード長 1,253 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 202,776 KB
実行使用メモリ 15,744 KB
最終ジャッジ日時 2024-09-21 23:48:55
合計ジャッジ時間 15,476 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 235 ms
7,296 KB
testcase_04 AC 233 ms
7,296 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 506 ms
15,744 KB
testcase_07 AC 291 ms
7,296 KB
testcase_08 AC 123 ms
5,376 KB
testcase_09 AC 37 ms
5,376 KB
testcase_10 AC 317 ms
9,472 KB
testcase_11 AC 277 ms
5,632 KB
testcase_12 AC 548 ms
13,440 KB
testcase_13 AC 243 ms
5,760 KB
testcase_14 AC 461 ms
7,936 KB
testcase_15 AC 225 ms
7,936 KB
testcase_16 AC 270 ms
8,832 KB
testcase_17 AC 1,156 ms
15,616 KB
testcase_18 AC 595 ms
12,672 KB
testcase_19 AC 581 ms
10,368 KB
testcase_20 AC 43 ms
5,376 KB
testcase_21 AC 857 ms
11,136 KB
testcase_22 AC 1,092 ms
11,136 KB
testcase_23 AC 111 ms
6,528 KB
testcase_24 AC 859 ms
13,312 KB
testcase_25 AC 141 ms
5,376 KB
testcase_26 AC 1,913 ms
11,136 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 414 ms
15,616 KB
testcase_29 AC 506 ms
15,616 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