結果

問題 No.519 アイドルユニット
ユーザー math_hiyokomath_hiyoko
提出日時 2020-12-14 02:16:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 716 bytes
コンパイル時間 1,699 ms
コンパイル使用メモリ 179,600 KB
実行使用メモリ 6,360 KB
最終ジャッジ日時 2024-09-20 00:22:43
合計ジャッジ時間 3,231 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 88 ms
6,220 KB
testcase_02 AC 33 ms
5,376 KB
testcase_03 AC 5 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 6 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 5 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 12 ms
5,376 KB
testcase_27 AC 14 ms
5,376 KB
testcase_28 AC 15 ms
5,376 KB
testcase_29 AC 81 ms
6,340 KB
testcase_30 AC 91 ms
6,244 KB
testcase_31 AC 92 ms
6,360 KB
testcase_32 AC 83 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];
    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] << endl;
    return 0;
}
0