結果

問題 No.2869 yuusaan's Knapsacks
ユーザー yuusaanyuusaan
提出日時 2024-07-17 21:57:49
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,725 bytes
コンパイル時間 3,298 ms
コンパイル使用メモリ 254,684 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-08-04 18:03:34
合計ジャッジ時間 19,902 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 313 ms
7,296 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 352 ms
7,296 KB
testcase_08 AC 94 ms
5,376 KB
testcase_09 AC 60 ms
5,376 KB
testcase_10 AC 441 ms
8,832 KB
testcase_11 AC 240 ms
6,272 KB
testcase_12 AC 751 ms
11,520 KB
testcase_13 AC 212 ms
6,272 KB
testcase_14 AC 441 ms
7,808 KB
testcase_15 AC 349 ms
7,808 KB
testcase_16 AC 427 ms
8,320 KB
testcase_17 AC 1,101 ms
13,056 KB
testcase_18 AC 779 ms
11,008 KB
testcase_19 AC 577 ms
9,344 KB
testcase_20 AC 66 ms
5,376 KB
testcase_21 AC 646 ms
9,984 KB
testcase_22 AC 805 ms
9,984 KB
testcase_23 AC 219 ms
6,784 KB
testcase_24 AC 914 ms
11,648 KB
testcase_25 AC 139 ms
5,888 KB
testcase_26 AC 968 ms
9,984 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'std::pair<int, int> pairmax(std::pair<int, int>, std::pair<int, int>, int)':
main.cpp:19:1: warning: no return statement in function returning non-void [-Wreturn-type]
   19 | }
      | ^

ソースコード

diff #

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

int Power(int a, int n){
    int ret = 1;
    int p = a; 
    while (n){
        if (n & 1) ret = ret * p;
        p = p * p;
        n >>= 1;
    } 
    return ret; 
}

pair<int,int> pairmax(pair<int,int> a,pair<int,int> b,int pre){
    if(b > a)swap(a,b);
    if(a.first > b.first){
    }
}


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<pair<int,int>> knap(Power(2,M),{0,0});
    for(int i = 0;i < (1 << M);i++){
        int wsum = 0;
        int vsum = 0;
        for(int j = 0;j < M;j++){
            if(i & (1 << j)){
                wsum += w[j];
                vsum += v[j];
            }
        }
        knap[i] = {vsum,wsum};
    }

    int ans = 0;
    vector<vector<pair<int,int>>> dp(N+1,vector<pair<int,int>>(Power(2,M),{0,0}));
    for(int i = 0;i < N;i++){
        for(int j = 1;j < (1 << M);j++){
            int nowbit = j;
            while(true){
                //dp[i+1][j] = max(dp[i+1][j],dp[i][nowbit] + knap[j ^ nowbit][e[i]]);
                if(knap[j^nowbit].second <= e[i] && dp[i+1][j].first < dp[i][nowbit].first + knap[j^nowbit].first){
                    //cout << "!" << i << " " << j << endl;
                    //cout << "!" << i << " " << j << " " << nowbit << endl;
                    dp[i+1][j].first = dp[i][nowbit].first + knap[j^nowbit].first;
                    dp[i+1][j].second = j ^ nowbit;
                }
                if(nowbit == 0)break;
                nowbit--;
                nowbit &= j;
            }
            //cout << dp[i+1][j].first << " " << dp[i+1][j].second << "  ";
            ans = max(ans,dp[i+1][j].first);
        }
        //cout << endl;
    }

    cout << ans << endl;
    vector<int> ans2(1 + N,0);
    bool loopbreak = 0;
    for(int i = 1;i <= N;i++){
        for(int j = 1;j < (1 << M);j++){
            if(dp[i][j].first == ans){
                
                while(i > 0){
                    //cout << j << endl;
                    ans2[i] = dp[i][j].second;
                    
                    j -= dp[i][j].second;
                    i--;
                }
                loopbreak = 1;
                break;
            }
        }
        if(loopbreak)break;
    }

    for(int i = 1;i <= N;i++){
        int count = 0;
        vector<int> out = vector<int> (0);
        for(int j = 0;j < M;j++){
            if(ans2[i] & (1 << j)){
                count++;
                out.push_back(j+1);
            }
        }
        cout << count << " ";
        for(int j : out)cout << j << " ";
        cout << endl;
    }

    return 0;
}
0