結果

問題 No.519 アイドルユニット
ユーザー simansiman
提出日時 2022-03-04 18:26:07
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 990 bytes
コンパイル時間 4,656 ms
コンパイル使用メモリ 140,016 KB
実行使用メモリ 69,020 KB
最終ジャッジ日時 2024-07-18 15:28:37
合計ジャッジ時間 19,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 386 ms
68,960 KB
testcase_03 AC 38 ms
68,860 KB
testcase_04 AC 20 ms
68,972 KB
testcase_05 AC 20 ms
68,992 KB
testcase_06 AC 19 ms
68,864 KB
testcase_07 AC 20 ms
68,864 KB
testcase_08 AC 19 ms
68,964 KB
testcase_09 AC 20 ms
68,864 KB
testcase_10 AC 23 ms
68,992 KB
testcase_11 AC 39 ms
68,864 KB
testcase_12 AC 20 ms
68,864 KB
testcase_13 AC 39 ms
68,992 KB
testcase_14 AC 39 ms
68,992 KB
testcase_15 AC 39 ms
68,992 KB
testcase_16 AC 38 ms
69,020 KB
testcase_17 AC 45 ms
68,864 KB
testcase_18 AC 38 ms
68,992 KB
testcase_19 AC 38 ms
68,864 KB
testcase_20 AC 38 ms
68,948 KB
testcase_21 AC 39 ms
68,992 KB
testcase_22 AC 38 ms
68,992 KB
testcase_23 AC 39 ms
68,864 KB
testcase_24 AC 103 ms
68,976 KB
testcase_25 AC 103 ms
68,992 KB
testcase_26 AC 102 ms
68,992 KB
testcase_27 AC 103 ms
68,864 KB
testcase_28 AC 103 ms
68,864 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 20 ms
68,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int dp[1 << 24];

int main() {
  int N;
  cin >> N;
  int V[N][N];

  for (int i = 0; i < N; ++i) {
    for (int j = 0; j < N; ++j) {
      cin >> V[i][j];
    }
  }

  int L = 1 << N;
  memset(dp, 0, sizeof(dp));
  int ans = 0;

  for (int i = 0; i < N / 2; ++i) {
    for (int mask = 0; mask < L; ++mask) {
      if (__builtin_popcount(mask) != 2 * i) continue;

      for (int j = 0; j < N; ++j) {
        if (mask >> j & 1) continue;
        for (int k = j + 1; k < N; ++k) {
          if (mask >> k & 1) continue;
          int nmask = mask | (1 << j) | (1 << k);
          dp[nmask] = max(dp[nmask], dp[mask] + V[j][k]);
          ans = max(ans, dp[nmask]);
        }
        break;
      }
    }
  }

  cout << ans << endl;

  return 0;
}
0