結果

問題 No.519 アイドルユニット
ユーザー HIcoderHIcoder
提出日時 2024-08-13 23:20:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 245 ms / 1,000 ms
コード長 1,429 bytes
コンパイル時間 1,591 ms
コンパイル使用メモリ 130,168 KB
実行使用メモリ 72,320 KB
最終ジャッジ日時 2024-08-13 23:20:08
合計ジャッジ時間 4,989 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
72,320 KB
testcase_01 AC 245 ms
72,288 KB
testcase_02 AC 76 ms
20,992 KB
testcase_03 AC 9 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 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 10 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 9 ms
5,376 KB
testcase_14 AC 9 ms
5,376 KB
testcase_15 AC 9 ms
5,376 KB
testcase_16 AC 10 ms
5,376 KB
testcase_17 AC 9 ms
5,376 KB
testcase_18 AC 9 ms
5,376 KB
testcase_19 AC 8 ms
5,376 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 9 ms
5,376 KB
testcase_22 AC 9 ms
5,376 KB
testcase_23 AC 8 ms
5,376 KB
testcase_24 AC 23 ms
7,680 KB
testcase_25 AC 24 ms
7,808 KB
testcase_26 AC 23 ms
7,796 KB
testcase_27 AC 24 ms
7,808 KB
testcase_28 AC 23 ms
7,808 KB
testcase_29 AC 244 ms
72,320 KB
testcase_30 AC 243 ms
72,192 KB
testcase_31 AC 243 ms
72,304 KB
testcase_32 AC 245 ms
72,212 KB
testcase_33 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;


int main(){
    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];
        }
    }
    //unordered_map<int,int> ump;
    vector<int> ump(1<<N);
    for(int S=0;S<(1<<N);S++){
        ump[S]=-1;
        for(int i=0;i<N;i++){
            if((S>>i)&1) continue;
            ump[S]=i;
            break;
        }
    }
    /*
    vector<int> dp(1<<N,-inf);
    dp[0]=0;
    for(int S=0;S<(1<<N);S++){
        int idx=ump[S];
        if(idx==-1) continue;
        for(int j=idx+1;j<N;j++){
            if(S>>j&1) continue;
            dp[S|(1<<idx)|(1<<j)]=max(dp[S|(1<<idx)|(1<<j)],dp[S]+F[idx][j]);
        }
    }
    */
    map<int,int> dp;
    dp[0]=0;
    for(auto [S,v]:dp){
        int idx=ump[S];
        if(idx==-1) continue;
        for(int j=idx+1;j<N;j++){
            if((S>>j)&1) continue;
            dp[S|(1<<idx)|(1<<j)]=max(dp[S|(1<<idx)|(1<<j)],dp[S]+F[idx][j]);
        }
    }
    int all=(1<<N)-1;
    cout<<dp[all]<<endl;
}
0