結果

問題 No.2364 Knapsack Problem
ユーザー as277575as277575
提出日時 2023-06-30 21:56:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,332 bytes
コンパイル時間 926 ms
コンパイル使用メモリ 124,516 KB
実行使用メモリ 67,840 KB
最終ジャッジ日時 2024-07-07 09:38:48
合計ジャッジ時間 2,714 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 11 ms
8,576 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 WA -
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 111 ms
67,840 KB
testcase_13 AC 112 ms
67,712 KB
testcase_14 WA -
testcase_15 AC 118 ms
67,840 KB
testcase_16 AC 108 ms
67,712 KB
testcase_17 AC 113 ms
67,584 KB
testcase_18 AC 108 ms
67,840 KB
testcase_19 AC 117 ms
67,712 KB
testcase_20 AC 117 ms
67,840 KB
testcase_21 AC 109 ms
67,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bit>
#include <cassert>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <deque>
#include <iostream>
#include <map>
#include <random>
#include <unordered_set>
#include <unordered_map>
#include <vector>
#include <set>
#include <string>

using namespace::std;

template <typename T>
void print(const T& v) {
 for (const auto& x : v) cout << x << " ";
 cout << endl;
}

int main() {
  ios::sync_with_stdio(false);
   long long n, m, w;
  cin >> n >> m >> w;
  vector< long long> dw(n + m);
  for ( long long i = 0; i < n; ++i) cin >> dw[i];
  vector< long long> dv(n + m);
  for ( long long i = 0; i < n; ++i) cin >> dv[i];
  for ( long long i = 0; i < m; ++i) { cin >> dw[n + i]; dw[n + i] = -dw[n + i]; }
  for ( long long i = 0; i < m; ++i) { cin >> dv[n + i]; dv[n + i] = -dv[n + i]; }
  
  vector<vector<long long>> d(1 << (n + m), vector<long long>(w + 1));
  
  long long r = 0;
  for ( long long s = 1; s < 1 << (n + m); ++s)
    for ( long long i = 0; i < n + m; ++i)
      if (s & (1 << i))
        for ( long long pw = 0; pw <= w; ++pw) {
           long long nw = pw + dw[i];
          if (0 <= nw && nw <= w) {
            d[s][nw] = max(d[s][nw], d[s ^ (1 << i)][pw] + dv[i]);   
            r = max(r, d[s][nw]);
          }
        }
  
  cout << r << endl;

  return 0;
}

0