結果

問題 No.1045 直方体大学
ユーザー KoDKoD
提出日時 2020-05-01 22:29:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,387 bytes
コンパイル時間 1,128 ms
コンパイル使用メモリ 93,856 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-07 10:46:52
合計ジャッジ時間 3,088 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 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 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 126 ms
5,376 KB
testcase_09 AC 126 ms
5,376 KB
testcase_10 AC 126 ms
5,376 KB
testcase_11 AC 110 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 94 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <utility>
#include <vector>
#include <numeric>
#include <array>

template <class T, class U>
inline bool chmin(T &lhs, const U &rhs) {
  if (lhs > rhs) {
    lhs = rhs;
    return true;
  }
  return false;
}

template <class T, class U>
inline bool chmax(T &lhs, const U &rhs) {
  if (lhs < rhs) {
    lhs = rhs;
    return true;
  }
  return false;
}

// [l, r) from l to r
struct range {
  struct itr {
    int i;
    constexpr itr(int i_): i(i_) { }
    constexpr void operator ++ () { ++i; }
    constexpr int operator * () const { return i; }
    constexpr bool operator != (itr x) const { return i != x.i; }
  };
  const itr l, r;
  constexpr range(int l_, int r_): l(l_), r(std::max(l_, r_)) { }
  constexpr itr begin() const { return l; }
  constexpr itr end() const { return r; }
};

// [l, r) from r to l
struct revrange {
  struct itr {
    int i;
    constexpr itr(int i_): i(i_) { }
    constexpr void operator ++ () { --i; }
    constexpr int operator * () const { return i; }
    constexpr bool operator != (itr x) const { return i != x.i; }
  };
  const itr l, r;
  constexpr revrange(int l_, int r_): l(l_ - 1), r(std::max(l_, r_) - 1) { }
  constexpr itr begin() const { return r; }
  constexpr itr end() const { return l; }
};

constexpr int inf = (1 << 30) - 1;

int main() {
  int N;
  std::cin >> N;
  std::vector<std::array<int, 3>> base(N);
  for (auto &arr: base) {
    for (auto &x: arr) {
      std::cin >> x;
    }
    std::sort(arr.rbegin(), arr.rend());
  }
  int ans = 0;
  for (int set: range(0, 1 << N)) {
    auto vec = base;
    for (int i: range(0, N)) {
      if (set >> i & 1) {
        std::swap(vec[i][0], vec[i][1]);
      }
    }
    vec.push_back({ inf, inf, inf });
    std::sort(vec.rbegin(), vec.rend());
    std::vector<std::array<int, 2>> dp(N + 1);
    for (auto &arr: dp) {
      arr.fill(0);
    }
    for (int i: range(1, N + 1)) {
      for (int j: range(0, i)) {
        for (int k: range(0, 2)) {
          int width = vec[i][1 + k];
          int get = vec[i][2 - k];
          for (int l: range(0, 2)) {
            if (vec[j][1 + l] >= width) {
              chmax(dp[i][k], dp[j][l] + get);
            }
          }
        }
      }
    }
    for (const auto &arr: dp) {
      chmax(ans, arr[0]);
      chmax(ans, arr[1]);
    }
  }
  std::cout << ans << '\n';
  return 0;
}
0