結果

問題 No.2364 Knapsack Problem
ユーザー rulerruler
提出日時 2023-07-01 05:32:00
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 3,000 ms
コード長 1,157 bytes
コンパイル時間 3,041 ms
コンパイル使用メモリ 252,516 KB
実行使用メモリ 67,920 KB
最終ジャッジ日時 2024-07-07 16:36:01
合計ジャッジ時間 5,258 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 12 ms
8,704 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 14 ms
10,624 KB
testcase_10 AC 6 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 129 ms
67,840 KB
testcase_13 AC 126 ms
67,840 KB
testcase_14 AC 131 ms
67,712 KB
testcase_15 AC 137 ms
67,920 KB
testcase_16 AC 129 ms
67,840 KB
testcase_17 AC 134 ms
67,840 KB
testcase_18 AC 125 ms
67,712 KB
testcase_19 AC 136 ms
67,840 KB
testcase_20 AC 136 ms
67,840 KB
testcase_21 AC 128 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
auto main() -> int {
  int n, m, W;
  cin >> n >> m >> W;
  vector<int> a(n), b(n), c(m), d(m);
  for (int i = 0; i < n; i++) {
    cin >> a[i];
  }

  for (int i = 0; i < n; i++) {
    cin >> b[i];
  }
  for (int i = 0; i < m; i++) {
    cin >> c[i];
  }
  for (int i = 0; i < m; i++) {
    cin >> d[i];
  }
  int l = n + m;
  int l2 = 1 << l;

  const long inf = 1l << 60;
  vector<vector<long>> dp(l2, vector<long>(W + 1, -inf));
  dp[0][0] = 0;
  for (int s = 0; s < l2; s++) {
    for (int i = 0; i < l; i++) {
      if (s >> i & 1)
        continue;
      int u = s | 1 << i;
      for (int j = 0; j <= W; j++) {
        dp[u][j] = max(dp[u][j], dp[s][j]);
      }
      if (i < n) {
        int dw = a[i];
        int dv = b[i];
        for (int j = W; j >= dw; j--) {
          dp[u][j] = max(dp[u][j], dp[s][j - dw] + dv);
        }
      } else {
        int dw = c[i - n];
        int dv = d[i - n];
        for (int j = 0; j <= W - dw; j++) {
          dp[u][j] = max(dp[u][j], dp[s][j + dw] - dv);
        }
      }
    }
  }
  cout << *max_element(dp[l2 - 1].begin(), dp[l2 - 1].end()) << endl;
}
0