結果

問題 No.519 アイドルユニット
ユーザー math_hiyokomath_hiyoko
提出日時 2020-12-14 02:23:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 94 ms / 1,000 ms
コード長 758 bytes
コンパイル時間 1,722 ms
コンパイル使用メモリ 179,828 KB
実行使用メモリ 6,248 KB
最終ジャッジ日時 2024-09-20 00:23:03
合計ジャッジ時間 3,547 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
6,236 KB
testcase_01 AC 88 ms
6,216 KB
testcase_02 AC 33 ms
5,376 KB
testcase_03 AC 6 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 5 ms
5,376 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 5 ms
5,376 KB
testcase_21 AC 5 ms
5,376 KB
testcase_22 AC 6 ms
5,376 KB
testcase_23 AC 6 ms
5,376 KB
testcase_24 AC 12 ms
5,376 KB
testcase_25 AC 13 ms
5,376 KB
testcase_26 AC 13 ms
5,376 KB
testcase_27 AC 12 ms
5,376 KB
testcase_28 AC 15 ms
5,376 KB
testcase_29 AC 83 ms
6,208 KB
testcase_30 AC 94 ms
6,240 KB
testcase_31 AC 94 ms
6,236 KB
testcase_32 AC 85 ms
6,248 KB
testcase_33 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i, n) for(int i = 0; i < (int)(n); i++)

int main(){
    int N;
    cin >> N;
    int F[N][N];
    rep(i, N) rep(j, N){
        cin >> F[i][j];
        F[i][j]++;
    }
    unordered_map<int, int> dp;
    queue<int> que;
    que.push(0);
    while(!que.empty()){
        int c = que.front();
        que.pop();
        int j = 0;
        while((c & (1<<j))) j++;
        for(int k = j + 1; k < N; k++){
            if(c & (1<<k)) continue;
            int d = c + (1<<j) + (1<<k);
            if(dp[d] < dp[c] + F[j][k]){
                dp[d] = dp[c] + F[j][k];
                if(d != (1<<N) - 1) que.push(d);
            }
        }
    }
    cout << dp[(1<<N) - 1] - N / 2 << endl;
    return 0;
}
0