結果

問題 No.1045 直方体大学
ユーザー KoD
提出日時 2020-05-01 22:41:47
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 2,583 bytes
コンパイル時間 1,363 ms
コンパイル使用メモリ 90,236 KB
最終ジャッジ日時 2025-01-10 05:16:20
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 16 WA * 1
権限があれば一括ダウンロードができます

ソースコード

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) {
    arr = {};
    for (auto &x: arr) {
      std::cin >> x;
    }
    std::sort(arr.rbegin(), arr.rend());
  }
  int ans = -inf;
  for (int set: range(0, 1 << N)) {
    std::vector<std::array<int, 4>> vec;
    for (int i: range(0, N)) {
      if (set >> i & 1) {
        vec.push_back({ base[i][1], base[i][2], base[i][0], 0 });
      }
      else {
        if (base[i][1] != base[i][2]) {
          vec.push_back({ base[i][0], base[i][1], base[i][2], 1 });
          vec.push_back({ base[i][0], base[i][2], base[i][1], 1 });
        }
        else {
          vec.push_back({ base[i][0], base[i][1], base[i][2], 0 });
        }
      }
    }
    vec.push_back({ inf, inf, inf, 0 });
    std::sort(vec.rbegin(), vec.rend());
    std::vector<int> dp(vec.size(), -inf);
    dp.front() = 0;
    for (int i: range(1, vec.size())) {
      if (vec[i][3]) {
        std::swap(vec[i][1], vec[i][2]);
      }
      for (int j: range(0, i)) {
        if (vec[j][1] >= vec[i][1]) {
          chmax(dp[i], dp[j] + vec[i][2]);
        }
      }
    }
    chmax(ans, *std::max_element(dp.begin(), dp.end()));
  }
  std::cout << ans << '\n';
  return 0;
}
0