結果
問題 | No.2869 yuusaan's Knapsacks |
ユーザー | yuusaan |
提出日時 | 2024-07-17 10:31:26 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,721 bytes |
コンパイル時間 | 3,217 ms |
コンパイル使用メモリ | 259,616 KB |
実行使用メモリ | 10,140 KB |
最終ジャッジ日時 | 2024-08-04 18:03:16 |
合計ジャッジ時間 | 9,211 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
コンパイルメッセージ
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 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<vector<int>> knap(Power(2,M),vector<int>(101,0)); for(int i = 0;i < (1 << M);i++){ vector<int> nowlug(0); int lugnum = 0; for(int j = 0;j < M;j++){ if(i & (1 << j)){ nowlug.push_back(j); lugnum++; } } vector<int> dp(101,0); vector<int> predp(101,0); vector<int> emp(101,0); for(int j = 0;j < lugnum;j++){ for(int iw = 1;iw <= 100;iw++){ dp[iw] = max(predp[iw],dp[iw-1]); if(iw >= w[nowlug[j]]){ dp[iw] = max(dp[iw], predp[iw-w[nowlug[j]]] + v[nowlug[j]]); } } predp = dp; dp = emp; } knap[i] = predp; } 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(dp[i+1][j].first < dp[i][nowbit].first + knap[j^nowbit][e[i]]){ dp[i+1][j].first = dp[i][nowbit].first + knap[j^nowbit][e[i]]; dp[i+1][j].second = j ^ nowbit; } if(nowbit == 0)break; nowbit--; nowbit &= j; } ans = max(ans,dp[i+1][j].first); } } cout << ans << endl; vector<int> ans2(1 + N,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){ ans2[i] = dp[i][j].second; i--; j -= dp[i][j].second; } } } } for(int j = 1;j <= N;j++){ int count = 0; vector<int> out = vector<int> (0); for(int i = 0;i < M;i++){ if(j & (1 << i)){ count++; out.push_back(i+1); } } cout << count << " "; for(int i : out)cout << i << " "; cout << endl; } return 0; }