結果

問題 No.2869 yuusaan's Knapsacks
ユーザー karinohitokarinohito
提出日時 2024-10-19 02:20:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 881 ms / 4,500 ms
コード長 1,594 bytes
コンパイル時間 2,599 ms
コンパイル使用メモリ 209,120 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-10-19 02:20:42
合計ジャッジ時間 14,590 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 235 ms
7,936 KB
testcase_04 AC 234 ms
7,808 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 641 ms
13,440 KB
testcase_07 AC 268 ms
7,808 KB
testcase_08 AC 69 ms
6,816 KB
testcase_09 AC 48 ms
6,820 KB
testcase_10 AC 324 ms
9,472 KB
testcase_11 AC 174 ms
6,820 KB
testcase_12 AC 581 ms
11,904 KB
testcase_13 AC 162 ms
6,816 KB
testcase_14 AC 373 ms
8,448 KB
testcase_15 AC 260 ms
8,448 KB
testcase_16 AC 321 ms
8,832 KB
testcase_17 AC 881 ms
13,568 KB
testcase_18 AC 603 ms
11,520 KB
testcase_19 AC 445 ms
9,856 KB
testcase_20 AC 52 ms
6,816 KB
testcase_21 AC 488 ms
10,496 KB
testcase_22 AC 637 ms
10,368 KB
testcase_23 AC 175 ms
7,296 KB
testcase_24 AC 706 ms
12,032 KB
testcase_25 AC 110 ms
6,820 KB
testcase_26 AC 799 ms
10,496 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 596 ms
13,440 KB
testcase_29 AC 632 ms
13,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


int main(){

    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    ll N,M;
    cin>>N>>M;
    vector<ll> E(N);
    for(int i=0;i<N;i++)cin>>E[i];
    reverse(E.begin(),E.end());
    vector<ll> V(M),W(M);
    for(int i=0;i<M;i++)cin>>V[i]>>W[i];
    vector<ll> SV(1<<M,0),SW(1<<M,0);
    for(int bit=0;bit<(1<<M);bit++){
        for(int i=0;i<M;i++){
            if(bit&(1<<i)){
                SV[bit]+=V[i];
                SW[bit]+=W[i];
            }
        }
    }
    vector<vector<ll>> DP(N+1,vector<ll>(1<<M,-1e18));
    DP[0][0]=0;
    for(int i=0;i<N;i++){
        for(int pit=0;pit<(1<<M);pit++){
            int bit=(1<<M)-1-pit;
            for (ll b = bit; b >= 0; b = (b - 1) & bit) {
                if(SW[b]<=E[i]){
                    DP[i+1][pit+b]=max(DP[i+1][pit+b],DP[i][pit]+SV[b]);
                }
                if (b == 0)break;
            }
        }
    }
    ll an=-1e18,mbit=0;;
    for(int bit=0;bit<(1<<M);bit++){
        if(an<DP[N][bit])mbit=bit;
        an=max(an,DP[N][bit]);
    }
    cout<<an<<endl;
    for(int i=N-1;i>=0;i--){
        for (ll b = mbit; b >= 0; b = (b - 1) & mbit) {
            if(DP[i][b]+SV[mbit-b]==DP[i+1][mbit]&&SW[mbit-b]<=E[i]){
                ll pit=mbit-b;
                cout<<__builtin_popcount(pit);
                for(int j=0;j<M;j++){
                    if(pit&(1<<j))cout<<" "<<j+1;
                }
                cout<<endl;
                mbit=b;
                break;
            }
            if (b == 0)break;
        }
    }
}
0