結果

問題 No.2869 yuusaan's Knapsacks
ユーザー 寝癖寝癖
提出日時 2024-07-19 18:51:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,278 ms / 4,500 ms
コード長 1,648 bytes
コンパイル時間 3,146 ms
コンパイル使用メモリ 256,428 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-08-04 18:04:34
合計ジャッジ時間 19,140 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 364 ms
6,940 KB
testcase_04 AC 375 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1,036 ms
8,704 KB
testcase_07 AC 392 ms
6,940 KB
testcase_08 AC 95 ms
6,944 KB
testcase_09 AC 71 ms
6,940 KB
testcase_10 AC 538 ms
6,940 KB
testcase_11 AC 243 ms
6,940 KB
testcase_12 AC 915 ms
7,936 KB
testcase_13 AC 238 ms
6,944 KB
testcase_14 AC 509 ms
6,940 KB
testcase_15 AC 415 ms
6,940 KB
testcase_16 AC 492 ms
6,940 KB
testcase_17 AC 1,278 ms
8,704 KB
testcase_18 AC 921 ms
7,680 KB
testcase_19 AC 672 ms
6,940 KB
testcase_20 AC 77 ms
6,940 KB
testcase_21 AC 751 ms
7,168 KB
testcase_22 AC 885 ms
7,168 KB
testcase_23 AC 271 ms
6,944 KB
testcase_24 AC 1,044 ms
7,936 KB
testcase_25 AC 161 ms
6,940 KB
testcase_26 AC 1,061 ms
7,168 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 994 ms
8,704 KB
testcase_29 AC 1,027 ms
8,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main() {
    int N, M;
    cin >> N >> M;

    vector<int> e(N), v(M), w(M);
    for (int i = 0; i < N; i++) cin >> e[i];
    for (int i = 0; i < M; i++) cin >> v[i] >> w[i];

    vector<int> sum_v(1<<M); vector<ll> sum_w(1<<M);
    for (int S = 0; S < (1<<M); S++) {
        for (int i = 0; i < M; i++) {
            if (S>>i & 1) {
                sum_v[S] += v[i];
                sum_w[S] += w[i];
            }
        }
    }

    vector<vector<int>> dp(N+1, vector<int>(1<<M));
    for (int i = 0; i < N; i++) {
        for (int S = 0; S < (1<<M); S++) {
            int U = (1<<M) - 1 - S;
            for (int T = U; ; T = (T-1) & U) {
                if (sum_w[T] <= e[i]) {
                    dp[i+1][S|T] = max(dp[i+1][S|T], dp[i][S] + sum_v[T]);
                }
                if (T == 0) break;
            }
        }
    }

    int m = *max_element(dp[N].begin(), dp[N].end());
    int S = 0;
    while (dp[N][S] != m) S++;

    vector<vector<int>> ans(N);
    for (int i = N; i > 0; i--) {
        vector<int> a;
        for (int T = S; ; T = (T-1) & S) {
            // dp[i-1][S^T] -> dp[i][S] 
            if (dp[i][S] == dp[i-1][S^T] + sum_v[T] && sum_w[T] <= e[i-1]) {
                for (int j = 0; j < M; j++) {
                    if (T>>j & 1) a.push_back(j+1);
                }
                S ^= T;
                break;
            }
        }
        ans[i-1] = a;
    }

    cout << m << endl;
    for (int i = 0; i < N; i++) {
        cout << ans[i].size();
        for (int j : ans[i]) cout << " " << j;
        cout << endl;
    }
}
0