結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 10 ms
8,704 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 WA -
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 109 ms
67,840 KB
testcase_13 AC 110 ms
67,840 KB
testcase_14 WA -
testcase_15 AC 114 ms
67,712 KB
testcase_16 AC 105 ms
67,840 KB
testcase_17 AC 115 ms
67,840 KB
testcase_18 AC 108 ms
67,840 KB
testcase_19 AC 113 ms
67,712 KB
testcase_20 AC 114 ms
67,840 KB
testcase_21 AC 106 ms
67,968 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);
  int n, m, w;
  cin >> n >> m >> w;
  vector<int> dw(n + m);
  for (int i = 0; i < n; ++i) cin >> dw[i];
  vector<int> dv(n + m);
  for (int i = 0; i < n; ++i) cin >> dv[i];
  for (int i = 0; i < m; ++i) { cin >> dw[n + i]; dw[n + i] = -dw[n + i]; }
  for (int 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 (int s = 1; s < 1 << (n + m); ++s)
    for (int i = 0; i < n + m; ++i)
      if (s & (1 << i))
        for (int pw = 0; pw <= w; ++pw) {
          int 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