結果
問題 | No.2869 yuusaan's Knapsacks |
ユーザー | yuusaan |
提出日時 | 2024-07-18 18:37:23 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,067 ms / 4,500 ms |
コード長 | 2,957 bytes |
コンパイル時間 | 2,777 ms |
コンパイル使用メモリ | 255,572 KB |
実行使用メモリ | 13,184 KB |
最終ジャッジ日時 | 2024-08-04 18:03:41 |
合計ジャッジ時間 | 16,024 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,812 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 301 ms
7,296 KB |
testcase_04 | AC | 290 ms
7,296 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 785 ms
13,184 KB |
testcase_07 | AC | 339 ms
7,296 KB |
testcase_08 | AC | 91 ms
6,940 KB |
testcase_09 | AC | 61 ms
6,940 KB |
testcase_10 | AC | 428 ms
8,960 KB |
testcase_11 | AC | 214 ms
6,944 KB |
testcase_12 | AC | 758 ms
11,520 KB |
testcase_13 | AC | 210 ms
6,944 KB |
testcase_14 | AC | 438 ms
7,808 KB |
testcase_15 | AC | 335 ms
7,808 KB |
testcase_16 | AC | 407 ms
8,320 KB |
testcase_17 | AC | 1,067 ms
13,056 KB |
testcase_18 | AC | 744 ms
11,008 KB |
testcase_19 | AC | 567 ms
9,472 KB |
testcase_20 | AC | 62 ms
6,940 KB |
testcase_21 | AC | 635 ms
9,984 KB |
testcase_22 | AC | 732 ms
9,984 KB |
testcase_23 | AC | 224 ms
6,948 KB |
testcase_24 | AC | 889 ms
11,520 KB |
testcase_25 | AC | 132 ms
6,940 KB |
testcase_26 | AC | 909 ms
9,984 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 783 ms
13,056 KB |
testcase_29 | AC | 776 ms
13,056 KB |
コンパイルメッセージ
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 | } | ^
ソースコード
#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 inf = 2e9;//無限大として扱う値 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});//ステップ1:各荷物の選び方についてどうのこうの for(int i = 0;i < (1 << M);i++){ bool over = 0; int wsum = 0; int vsum = 0; for(int j = 0;j < M;j++){ if(i & (1 << j)){ wsum += w[j]; vsum += v[j]; } if(wsum > 1e9)over = 1; } if(over)knap[i] = {vsum,inf}; else 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++){//ステップ2 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; }