結果

問題 No.845 最長の切符
ユーザー yakamotoyakamoto
提出日時 2019-06-28 22:54:28
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 82 ms / 3,000 ms
コード長 2,817 bytes
コンパイル時間 1,595 ms
コンパイル使用メモリ 170,936 KB
実行使用メモリ 7,592 KB
最終ジャッジ日時 2023-09-14 22:30:06
合計ジャッジ時間 3,241 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 3 ms
4,376 KB
testcase_11 AC 1 ms
4,376 KB
testcase_12 AC 2 ms
4,376 KB
testcase_13 AC 1 ms
4,380 KB
testcase_14 AC 2 ms
4,376 KB
testcase_15 AC 15 ms
4,376 KB
testcase_16 AC 76 ms
7,568 KB
testcase_17 AC 14 ms
4,376 KB
testcase_18 AC 32 ms
5,084 KB
testcase_19 AC 7 ms
4,376 KB
testcase_20 AC 82 ms
7,552 KB
testcase_21 AC 79 ms
7,400 KB
testcase_22 AC 13 ms
4,380 KB
testcase_23 AC 4 ms
4,376 KB
testcase_24 AC 76 ms
7,592 KB
testcase_25 AC 1 ms
4,376 KB
testcase_26 AC 5 ms
7,508 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 5 ms
7,472 KB
testcase_29 AC 2 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

namespace DECLARATIONS {
  using namespace std;

  using ll = long long;
  using PI = pair<int, int>;
  template<class T> using V = vector<T>;
  using VI = V<int>;
#define _1 first
#define _2 second

#ifdef MY_DEBUG
# define DEBUG(x) x
#else
# define DEBUG(x)
#endif

  template<class T>
  inline void debug(T &A) {
    DEBUG(
        for (const auto &a : A) {
          cerr << a << " ";
        }
        cerr << '\n';
    )
  }

  template<class T>
  inline void debug_dim2(T &A) {
    DEBUG(
        for (const auto &as : A) {
          debug(as);
        }
    )
  }

  template<typename ... Args>
  inline void debug(const char *format, Args const &... args) {
    DEBUG(
        fprintf(stderr, format, args ...);
        cerr << '\n';
    )
  }

  template<typename ... Args>
  string format(const std::string &fmt, Args ... args) {
    size_t len = std::snprintf(nullptr, 0, fmt.c_str(), args ...);
    std::vector<char> buf(len + 1);
    std::snprintf(&buf[0], len + 1, fmt.c_str(), args ...);
    return std::string(&buf[0], &buf[0] + len);
  }
}
using namespace DECLARATIONS;

const int MOD = 1000000007;


template<class T>
class SegmentTree {
private:
  int calcN(int x) {
    int k = 1 << (31 - __builtin_clz(x));
    return k == x ? k : k << 1;
  }

public:
  int N;
  V<T> dat;
  const T zero = (ll)-1e18;

  inline T f(T a, T b) {
    return max(a, b);
  }

  SegmentTree(int n): N(calcN(n)), dat(2 * this->N) {
    if (zero != 0) std::fill(dat.begin(), dat.end(), zero);
  }

  void update(int i, T a) {
    int ix = i + N;
    dat[ix] = a;
    while(ix > 1) {
      int p = ix >> 1;
      dat[p] = f(dat[ix], dat[ix ^ 1]);
      ix = p;
    }
  }

  /**
   * [a, b)
   */
  T query(int a, int b) {
    T res = zero;
    int l = a + N, r = b - 1 + N;
    while(l <= r) {
      if ((l&1)) res = f(res, dat[l]);
      if (!(r&1)) res = f(res, dat[r]);
      l = (l + 1) >> 1; // 右の子供なら右の親に移動
      r = (r - 1) >> 1; // 左の子供なら左の親に移動
    }
    return res;
  }
};

int main() {
  std::ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int N, M;
  cin >> N >> M;
  V<VI> g(N, VI(N, -1));
  for (int i = 0; i < M; ++i) {
    int a, b, c;
    cin >> a >> b >> c;
    a--; b--;
    g[a][b] = max(g[a][b], c);
    g[b][a] = max(g[b][a], c);
  }


  V<VI> memo(N, VI(1 << N, -1));
  function<int(int, int)> dfs = [&](int v, int mask) {
    if (memo[v][mask] == -1) {
      int res = 0;
      for (int u = 0; u < N; ++u) {
        if (g[v][u] != -1 && !(mask & (1 << u))) {
          res = max(res, dfs(u, mask | (1 << u)) + g[v][u]);
        }
      }
      memo[v][mask] = res;
    }
    return memo[v][mask];
  };
  int ans = 0;
  for (int i = 0; i < N; ++i) {
    ans = max(ans, dfs(i, 1 << i));
  }

  cout << ans;

  return 0;
}
0