結果

問題 No.2364 Knapsack Problem
ユーザー twooimptwooimp
提出日時 2023-06-30 22:40:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,007 bytes
コンパイル時間 1,312 ms
コンパイル使用メモリ 170,384 KB
実行使用メモリ 67,736 KB
最終ジャッジ日時 2024-07-07 10:31:29
合計ジャッジ時間 3,462 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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<n+m;i++){
      for(ll j=0;j<=w;j++){
        if(i<n){
          if(s&(1<<i)){
            continue;
          }
          if(j+a[i]<=w){
            dp[s|(1<<i)][j+a[i]]=max(dp[s|(1<<i)][j+a[i]],dp[s][j]+b[i]);
          }
        }else{
          if(s&(1<<i)){
            continue;
          }
          if(j-c[i-n]>=0){
            dp[s|(1<<i)][j-c[i-n]]=max(dp[s|(1<<i)][j-c[i-n]],dp[s][j]-d[i-n]);
          }
        }
      }
    }
  }
  ll ans=0;
  for(ll i=0;i<=w;i++){
    ans=max(dp[1<<(n+m)-1][i],ans);
  }
  cout<<ans<<endl;
}
0