結果

問題 No.2869 yuusaan's Knapsacks
ユーザー 寝癖寝癖
提出日時 2024-07-19 00:46:59
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,848 bytes
コンパイル時間 3,105 ms
コンパイル使用メモリ 256,864 KB
実行使用メモリ 817,112 KB
最終ジャッジ日時 2024-08-04 18:03:54
合計ジャッジ時間 11,850 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 30 ms
5,588 KB
testcase_04 AC 37 ms
10,200 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 847 ms
160,724 KB
testcase_07 AC 174 ms
47,580 KB
testcase_08 AC 7 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 241 ms
28,376 KB
testcase_11 AC 30 ms
12,060 KB
testcase_12 AC 982 ms
286,168 KB
testcase_13 AC 20 ms
7,896 KB
testcase_14 AC 353 ms
90,360 KB
testcase_15 AC 66 ms
8,408 KB
testcase_16 AC 155 ms
26,968 KB
testcase_17 MLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

struct Data {
    int v;
    int use;
    Data* prev;
};

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<Data*> now(1<<M);
    now[0] = new Data{0, 0, nullptr};
    for (int i = 0; i < N; i++) {
        vector<Data*> next(1<<M);
        for (int S = 0; S < (1<<M); S++) {
            if (!now[S]) continue;
            int U = (1<<M)-1-S;
            for (int T = U; T > 0; T = (T-1)&U) {
                if (sum_w[T] > e[i]) continue;
                if (!next[S|T] || now[S]->v+sum_w[T] > next[S|T]->v) {
                    next[S|T] = new Data{now[S]->v+sum_v[T], T, now[S]};
                }
            }
            next[S] = new Data{now[S]->v, 0, now[S]};
        }
        now = next;
    }

    ll m = 0;
    for (int S = 0; S < (1<<M); S++) {
        if (now[S] && now[S]->v > m) m = now[S]->v;
    }
    int S = 0;
    for (int i = 0; i < (1<<M); i++) {
        if (now[i] && now[i]->v == m) {
            S = i;
            break;
        }
    }

    vector<vector<int>> ans(N);
    Data* p = now[S];
    while (p) {
        for (int i = 0; i < M; i++) {
            if (p->use>>i & 1) ans[N-1].push_back(i+1);
        }
        p = p->prev;
        N--;
    }

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