結果

問題 No.519 アイドルユニット
ユーザー furafura
提出日時 2020-12-13 23:46:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 31 ms / 1,000 ms
コード長 494 bytes
コンパイル時間 1,782 ms
コンパイル使用メモリ 201,456 KB
実行使用メモリ 69,292 KB
最終ジャッジ日時 2024-09-20 00:16:08
合計ジャッジ時間 3,446 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
69,108 KB
testcase_01 AC 30 ms
69,096 KB
testcase_02 AC 22 ms
69,164 KB
testcase_03 AC 19 ms
69,132 KB
testcase_04 AC 17 ms
69,080 KB
testcase_05 AC 19 ms
69,144 KB
testcase_06 AC 18 ms
69,284 KB
testcase_07 AC 18 ms
69,292 KB
testcase_08 AC 18 ms
69,120 KB
testcase_09 AC 19 ms
69,124 KB
testcase_10 AC 19 ms
69,100 KB
testcase_11 AC 18 ms
69,224 KB
testcase_12 AC 18 ms
69,096 KB
testcase_13 AC 18 ms
69,140 KB
testcase_14 AC 18 ms
69,176 KB
testcase_15 AC 18 ms
69,156 KB
testcase_16 AC 19 ms
69,160 KB
testcase_17 AC 19 ms
69,200 KB
testcase_18 AC 18 ms
69,216 KB
testcase_19 AC 19 ms
69,096 KB
testcase_20 AC 19 ms
69,200 KB
testcase_21 AC 19 ms
69,188 KB
testcase_22 AC 19 ms
69,116 KB
testcase_23 AC 18 ms
69,144 KB
testcase_24 AC 20 ms
69,204 KB
testcase_25 AC 19 ms
69,108 KB
testcase_26 AC 20 ms
69,216 KB
testcase_27 AC 18 ms
69,068 KB
testcase_28 AC 20 ms
69,164 KB
testcase_29 AC 30 ms
69,268 KB
testcase_30 AC 31 ms
69,076 KB
testcase_31 AC 31 ms
69,264 KB
testcase_32 AC 31 ms
69,232 KB
testcase_33 AC 18 ms
69,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

int n,A[24][24];

int memo[1<<24];

int dfs(int S){
	int& res=memo[S];
	if(res!=-1) return res;

	if(S==(1<<n)-1) return res=0;

	int i;
	for(i=0;S>>i&1;i++);

	res=0;
	for(int j=i+1;j<n;j++) if(~S>>j&1) {
		res=max(res,dfs(S|1<<i|1<<j)+A[i][j]);
	}
	return res;
}

int main(){
	scanf("%d",&n);
	rep(i,n) rep(j,n) scanf("%d",&A[i][j]);

	memset(memo,-1,sizeof memo);
	printf("%d\n",dfs(0));

	return 0;
}
0