結果
問題 | No.2364 Knapsack Problem |
ユーザー | momoyuu |
提出日時 | 2023-10-25 15:25:24 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,301 bytes |
コンパイル時間 | 2,982 ms |
コンパイル使用メモリ | 253,852 KB |
実行使用メモリ | 584,576 KB |
最終ジャッジ日時 | 2024-09-25 05:52:33 |
合計ジャッジ時間 | 27,300 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 13 ms
9,728 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 24 ms
12,160 KB |
testcase_05 | AC | 54 ms
25,600 KB |
testcase_06 | AC | 24 ms
12,160 KB |
testcase_07 | AC | 919 ms
266,752 KB |
testcase_08 | AC | 5 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 427 ms
135,040 KB |
testcase_11 | AC | 49 ms
20,736 KB |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int n,m,w; cin>>n>>m>>w; vector<ll> a(n),b(n),c(m),d(m); for(int i = 0;i<n;i++) cin>>a[i]; for(int i = 0;i<n;i++) cin>>b[i]; for(int i = 0;i<m;i++) cin>>c[i]; for(int i = 0;i<m;i++) cin>>d[i]; vector<vector<vector<ll>>> dp(1<<n,vector<vector<ll>>(1<<m,vector<ll>(w+1+4000,-1e18))); dp[0][0][4000] = 0; ll ans = -1e18; for(int i = 0;i<1<<n;i++){ for(int j = 0;j<1<<m;j++){ for(int k = 0;k<=w+4000;k++){ ans = max(ans,dp[i][j][k]); for(int l = 0;l<n;l++){ if(i>>l&1) continue; int ni = i | (1<<l); int nxt = k + a[l]; if(nxt>w+4000) continue; dp[ni][j][nxt] = max(dp[ni][j][nxt],dp[i][j][k]+b[l]); } for(int l = 0;l<m;l++){ if(j>>l&1) continue; int ni = j | (1<<l); int nxt = k - c[l]; if(nxt<0) continue; dp[i][ni][nxt] = max(dp[i][ni][nxt],dp[i][j][k]-d[l]); } } } } cout<<ans<<endl; }