結果

問題 No.2364 Knapsack Problem
ユーザー ___Johniel___Johniel
提出日時 2023-06-30 22:04:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 49 ms / 3,000 ms
コード長 3,032 bytes
コンパイル時間 2,102 ms
コンパイル使用メモリ 203,780 KB
実行使用メモリ 71,044 KB
最終ジャッジ日時 2023-09-21 16:05:50
合計ジャッジ時間 4,075 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
70,840 KB
testcase_01 AC 33 ms
71,008 KB
testcase_02 AC 33 ms
70,824 KB
testcase_03 AC 33 ms
70,864 KB
testcase_04 AC 34 ms
70,780 KB
testcase_05 AC 35 ms
70,848 KB
testcase_06 AC 34 ms
70,840 KB
testcase_07 AC 41 ms
70,856 KB
testcase_08 AC 35 ms
70,792 KB
testcase_09 AC 35 ms
70,792 KB
testcase_10 AC 37 ms
70,864 KB
testcase_11 AC 35 ms
70,784 KB
testcase_12 AC 48 ms
70,828 KB
testcase_13 AC 48 ms
70,828 KB
testcase_14 AC 49 ms
70,788 KB
testcase_15 AC 48 ms
70,900 KB
testcase_16 AC 48 ms
70,812 KB
testcase_17 AC 48 ms
70,800 KB
testcase_18 AC 49 ms
70,840 KB
testcase_19 AC 48 ms
71,044 KB
testcase_20 AC 48 ms
71,012 KB
testcase_21 AC 48 ms
70,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// github.com/Johniel/contests
// yukicoder/2364/main.cpp

#include <bits/stdc++.h>

#define each(i, c) for (auto& i : c)
#define unless(cond) if (!(cond))
// #define endl "\n"

using namespace std;

template<typename P, typename Q> ostream& operator << (ostream& os, pair<P, Q> p) { os << "(" << p.first << "," << p.second << ")"; return os; }
template<typename P, typename Q> istream& operator >> (istream& is, pair<P, Q>& p) { is >> p.first >> p.second; return is; }
template<typename T> ostream& operator << (ostream& os, vector<T> v) { os << "("; for (auto& i: v) os << i << ","; os << ")"; return os; }
template<typename T> istream& operator >> (istream& is, vector<T>& v) { for (auto& i: v) is >> i; return is; }
template<typename T> ostream& operator << (ostream& os, set<T> s) { os << "#{"; for (auto& i: s) os << i << ","; os << "}"; return os; }
template<typename K, typename V> ostream& operator << (ostream& os, map<K, V> m) { os << "{"; for (auto& i: m) os << i << ","; os << "}"; return os; }
template<typename E, size_t N> istream& operator >> (istream& is, array<E, N>& a) { for (auto& i: a) is >> i; return is; }
template<typename E, size_t N> ostream& operator << (ostream& os, array<E, N>& a) { os << "[" << N << "]{"; for (auto& i: a) os << i << ","; os << "}"; return os; }

template<typename T> inline T setmax(T& a, T b) { return a = std::max(a, b); }
template<typename T> inline T setmin(T& a, T b) { return a = std::min(a, b); }

__attribute__((constructor)) static void ___initio(void) { ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.setf(ios_base::fixed); cout.precision(15); return ; }

using lli = long long int;
using ull = unsigned long long;
using str = string;
template<typename T> using vec = vector<T>;

constexpr array<int, 8> di({0, 1, -1, 0, 1, -1, 1, -1});
constexpr array<int, 8> dj({1, 0, 0, -1, 1, -1, -1, 1});
constexpr lli mod = 1e9 + 7;
// constexpr lli mod = 998244353;

int main(int argc, char *argv[])
{
  int n, m, w;
  while (cin >> n >> m >> w) {
    vec<lli> a(n), b(n), c(m), d(m);
    cin >> a >> b >> c >> d;
    const int N = (1 << 7) + 3;
    const int M = (1 << 7) + 3;
    const int W = 500 + 3;
    static lli dp[N][M][W];
    const lli inf = 1LL << 60;
    fill(&dp[0][0][0], &dp[N - 1][M - 1][W - 1] + 1, -inf);
    dp[0][0][0] = 0;
    for (int b1 = 0; b1 < (1 << n); ++b1) {
      for (int b2 = 0; b2 < (1 << m); ++b2) {
        for (int k = 0; k < W; ++k) {
          if (dp[b1][b2][k] < 0) continue;
          for (int i = 0; i < n; ++i) {
            if (b1 & (1 << i)) continue;
            if (k + a[i] <= w) {
              setmax(dp[b1 | (1 << i)][b2][k + a[i]], dp[b1][b2][k] + b[i]);
            }
          }
          for (int j = 0; j < m; ++j) {
            if (b2 & (1 << j)) continue;
            if (0 <= k - c[j]) {
              setmax(dp[b1][b2 | (1 << j)][k - c[j]], dp[b1][b2][k] - d[j]);
            }
          }
        }
      }
    }
    cout << *max_element(&dp[0][0][0], &dp[N - 1][M - 1][W - 1] + 1) << endl;
  }
  return 0;
}
0