結果
問題 | No.2364 Knapsack Problem |
ユーザー | twooimp |
提出日時 | 2023-06-30 23:18:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,074 bytes |
コンパイル時間 | 1,364 ms |
コンパイル使用メモリ | 171,384 KB |
実行使用メモリ | 67,780 KB |
最終ジャッジ日時 | 2024-07-07 11:13:49 |
合計ジャッジ時間 | 3,672 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll=long long; int main(){ ll n,m,w; cin>>n>>m>>w; vector<ll> a(n),b(n),c(m),d(m); for(ll i=0;i<n;i++){ cin>>a[i]; } for(ll i=0;i<n;i++){ cin>>b[i]; } for(ll i=0;i<m;i++){ cin>>c[i]; } for(ll i=0;i<m;i++){ cin>>d[i]; } ll dp[1<<(n+m)][w+1]; for(ll i=0;i<(1<<(n+m));i++){ for(ll j=0;j<=w;j++){ dp[i][j]=0; } } for(ll s=0;s<(1<<(n+m));s++){ for(ll i=0;i<=w;i++){ for(ll j=0;j<n;j++){ if(!s&(1<<j)){ dp[s|(1<<j)][i]=min(dp[s|(1<<j)][i],dp[s][i]); if(i+a[j]<=w){ dp[s|(1<<j)][i+a[j]]=max(dp[s|(1<<j)][i+a[j]],dp[s][i]+b[j]); } } } for(ll j=0;j<m;j++){ if(!s&(1<<(n+j))){ dp[s|(1<<(n+j))][i]=min(dp[s|(1<<(n+j))][i],dp[s][i]); if(i-c[j]>=0){ dp[s|(1<<(n+j))][i-c[j]]=max(dp[s|(1<<(n+j))][i-c[j]],dp[s][i]-d[j]); } } } } } ll ans=0; for(ll i=0;i<=w;i++){ ans=max(dp[1<<(n+m)-1][i],ans); } cout<<ans<<endl; }