結果

問題 No.2364 Knapsack Problem
ユーザー planesplanes
提出日時 2023-06-30 21:59:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 796 bytes
コンパイル時間 1,644 ms
コンパイル使用メモリ 167,472 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-21 15:58:08
合計ジャッジ時間 2,795 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 WA -
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,380 KB
testcase_14 WA -
testcase_15 AC 2 ms
4,376 KB
testcase_16 AC 2 ms
4,376 KB
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 2 ms
4,380 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

  #include <bits/stdc++.h> 
using namespace std;
using ll =long long;
#define all(v) v.begin(),v.end()
 #define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)

ll INF=2e18;

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 ans=0;

  for(ll i=0;i<(1LL<<N);i++) {
    ll w=0;
    ll v=0;
    for(ll j=0;j<N;j++) {
      if(i&(1LL<<j)) {
        w+=A[j];
        v+=B[j];
      }
    }



    for(ll j=0;j<(1LL<<M);j++) {
      ll x=w;
     ll y=v;

      for(ll h=0;h<M;h++) {
        if(j&(1LL<<h)) {
          x-=C[h];
          y-=D[h];
        }
      }


    if(x<=W) ans=max(ans,y);
  }
  }




  cout<<ans<<endl;
}

0