結果

問題 No.519 アイドルユニット
ユーザー HIcoderHIcoder
提出日時 2024-08-13 22:59:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,014 bytes
コンパイル時間 1,124 ms
コンパイル使用メモリ 121,372 KB
実行使用メモリ 68,864 KB
最終ジャッジ日時 2024-08-13 23:00:12
合計ジャッジ時間 12,664 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 AC 308 ms
19,712 KB
testcase_03 AC 20 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 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 20 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 18 ms
5,376 KB
testcase_14 AC 19 ms
5,376 KB
testcase_15 AC 19 ms
5,376 KB
testcase_16 AC 20 ms
5,376 KB
testcase_17 AC 19 ms
5,376 KB
testcase_18 AC 19 ms
5,376 KB
testcase_19 AC 19 ms
5,376 KB
testcase_20 AC 19 ms
5,376 KB
testcase_21 AC 18 ms
5,376 KB
testcase_22 AC 18 ms
5,376 KB
testcase_23 AC 19 ms
5,376 KB
testcase_24 AC 80 ms
7,400 KB
testcase_25 AC 75 ms
7,392 KB
testcase_26 AC 76 ms
7,316 KB
testcase_27 AC 75 ms
7,296 KB
testcase_28 AC 77 ms
7,424 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
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];
        }
    }
    vector<int> dp(1<<N,-inf);
    dp[0]=0;
    for(int S=0;S<(1<<N);S++){
        int idx=-1;
        for(int i=0;i<N;i++){
            if(S>>i&1) continue;
            idx=i;
            break;
        }
        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