結果

問題 No.2869 yuusaan's Knapsacks
ユーザー RubikunRubikun
提出日時 2024-08-30 21:43:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 684 ms / 4,500 ms
コード長 2,477 bytes
コンパイル時間 2,107 ms
コンパイル使用メモリ 209,708 KB
実行使用メモリ 13,276 KB
最終ジャッジ日時 2024-08-30 21:44:01
合計ジャッジ時間 8,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,520 KB
testcase_01 AC 3 ms
7,520 KB
testcase_02 AC 2 ms
7,516 KB
testcase_03 AC 35 ms
8,160 KB
testcase_04 AC 36 ms
8,032 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 432 ms
13,152 KB
testcase_07 AC 81 ms
9,008 KB
testcase_08 AC 7 ms
6,944 KB
testcase_09 AC 7 ms
6,940 KB
testcase_10 AC 75 ms
9,828 KB
testcase_11 AC 27 ms
7,516 KB
testcase_12 AC 398 ms
11,876 KB
testcase_13 AC 24 ms
7,520 KB
testcase_14 AC 69 ms
8,628 KB
testcase_15 AC 27 ms
8,160 KB
testcase_16 AC 72 ms
8,744 KB
testcase_17 AC 684 ms
13,276 KB
testcase_18 AC 370 ms
12,004 KB
testcase_19 AC 137 ms
9,952 KB
testcase_20 AC 7 ms
6,940 KB
testcase_21 AC 329 ms
10,208 KB
testcase_22 AC 452 ms
10,760 KB
testcase_23 AC 13 ms
7,780 KB
testcase_24 AC 511 ms
12,004 KB
testcase_25 AC 7 ms
6,940 KB
testcase_26 AC 643 ms
10,876 KB
testcase_27 AC 3 ms
6,940 KB
testcase_28 AC 374 ms
13,156 KB
testcase_29 AC 424 ms
13,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; }
template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; }
#define vi vector<int>
#define vl vector<ll>
#define vii vector<pair<int,int>>
#define vll vector<pair<ll,ll>>
#define vvi vector<vector<int>>
#define vvl vector<vector<ll>>
#define vvii vector<vector<pair<int,int>>>
#define vvll vector<vector<pair<ll,ll>>>
#define vst vector<string>
#define pb push_back
#define all(x) (x).begin(),(x).end()
#define mkunique(x) sort(all(x));(x).erase(unique(all(x)),(x).end())
#define fi first
#define se second
#define mp make_pair
#define si(x) int(x.size())
const int mod=998244353,MAX=300005,INF=15<<26;

ll dp[17][1<<16];
ll suma[1<<16],sumb[1<<16];

int main(){
    
    std::ifstream in("text.txt");
    std::cin.rdbuf(in.rdbuf());
    cin.tie(0);
    ios::sync_with_stdio(false);
    
    ll N,M;cin>>N>>M;
    vl E(N);
    for(int i=0;i<N;i++) cin>>E[i];
    reverse(all(E));
    vll T(M);
    for(int i=0;i<M;i++){
        ll a,b;cin>>a>>b;
        T[i]=mp(b,a);
    }
    
    for(int i=0;i<=N;i++){
        for(int j=0;j<(1<<16);j++){
            dp[i][j]=-INF;
        }
    }
    
    for(int S=0;S<(1<<M);S++){
        ll aa=0,bb=0;
        for(int k=0;k<M;k++){
            if(S&(1<<k)){
                aa+=T[k].fi;
                bb+=T[k].se;
            }
        }
        suma[S]=aa;
        sumb[S]=bb;
    }
    dp[0][0]=0;
    
    for(int i=0;i<N;i++){
        for(int j=0;j<(1<<M);j++){
            if(dp[i][j]<0) continue;
            int rem=(1<<M)-1-j;
            for(int S=rem;;S=(S-1)&rem){
                if(suma[S]<=E[i]){
                    chmax(dp[i+1][j|S],dp[i][j]+sumb[S]);
                }
                if(S==0) break;
            }
        }
    }
    
    pair<ll,ll> ma=mp(-1,-1);
    for(int j=0;j<(1<<M);j++){
        chmax(ma,mp(dp[N][j],(ll)(j)));
    }
    
    cout<<ma.fi<<"\n";
    ll j=ma.se;
    
    for(int i=N-1;i>=0;i--){
        ll nex=-1;
        for(ll p=0;p<(1<<M);p++){
            if((p&j)==p){
                if(suma[j-p]<=E[i]){
                    nex=p;
                    break;
                }
            }
        }
        ll sa=j-nex;
        cout<<__builtin_popcount(sa);
        for(int x=0;x<M;x++){
            if(sa&(1<<x)) cout<<" "<<x+1;
        }
        cout<<"\n";
        j=nex;
    }
}

0