結果

問題 No.519 アイドルユニット
ユーザー ooaiuooaiu
提出日時 2024-11-29 14:51:19
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 882 bytes
コンパイル時間 2,946 ms
コンパイル使用メモリ 249,888 KB
実行使用メモリ 68,788 KB
最終ジャッジ日時 2024-11-29 14:51:23
合計ジャッジ時間 4,710 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
68,788 KB
testcase_01 AC 44 ms
68,728 KB
testcase_02 AC 14 ms
19,656 KB
testcase_03 AC 3 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 3 ms
6,820 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 3 ms
6,816 KB
testcase_14 AC 3 ms
6,820 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 3 ms
6,820 KB
testcase_17 AC 3 ms
6,816 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 3 ms
6,816 KB
testcase_20 AC 3 ms
6,816 KB
testcase_21 AC 4 ms
6,816 KB
testcase_22 AC 3 ms
6,820 KB
testcase_23 AC 3 ms
6,816 KB
testcase_24 AC 6 ms
7,404 KB
testcase_25 AC 6 ms
7,276 KB
testcase_26 AC 6 ms
7,300 KB
testcase_27 AC 6 ms
7,324 KB
testcase_28 AC 5 ms
7,152 KB
testcase_29 AC 44 ms
68,656 KB
testcase_30 AC 45 ms
68,744 KB
testcase_31 AC 45 ms
68,728 KB
testcase_32 AC 44 ms
68,744 KB
testcase_33 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

void solve() {
    int N; cin >> N;
    vector<vector<int>> F(N, vector<int>(N));
    for(int i = 0; i < N; i++) for(int j = 0; j < N; j++) cin >> F[i][j];
    const int M = 1 << N;
    vector<int> dp(M, -1);
    dp[0] = 0;
    for(int bit = 0; bit < M; bit++) if(dp[bit] != -1){
        for(int i = 0; i < N; i++) if(!(bit >> i & 1)) {
            for(int j = i + 1; j < N; j++) if(!(bit >> j & 1)) {
                int nxt = bit | 1 << i | 1 << j;
                dp[nxt] = max(dp[nxt], dp[bit] + F[i][j]);
            }
            break;
        }
    }
    cout << dp[M - 1] << endl;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0