結果

問題 No.519 アイドルユニット
ユーザー tookunn_1213tookunn_1213
提出日時 2017-05-29 22:50:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 228 ms / 1,000 ms
コード長 436 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 202,996 KB
最終ジャッジ日時 2023-10-21 16:59:52
合計ジャッジ時間 4,490 ms
ジャッジサーバーID
(参考情報)
judge9 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 210 ms
202,984 KB
testcase_01 AC 228 ms
202,996 KB
testcase_02 AC 96 ms
101,072 KB
testcase_03 AC 64 ms
68,300 KB
testcase_04 AC 35 ms
53,396 KB
testcase_05 AC 36 ms
53,396 KB
testcase_06 AC 36 ms
53,396 KB
testcase_07 AC 36 ms
53,396 KB
testcase_08 AC 47 ms
61,804 KB
testcase_09 AC 53 ms
64,188 KB
testcase_10 AC 56 ms
66,752 KB
testcase_11 AC 57 ms
68,300 KB
testcase_12 AC 40 ms
53,396 KB
testcase_13 AC 58 ms
68,300 KB
testcase_14 AC 58 ms
68,300 KB
testcase_15 AC 58 ms
68,300 KB
testcase_16 AC 58 ms
68,300 KB
testcase_17 AC 57 ms
68,300 KB
testcase_18 AC 57 ms
68,300 KB
testcase_19 AC 58 ms
68,300 KB
testcase_20 AC 59 ms
68,300 KB
testcase_21 AC 59 ms
68,300 KB
testcase_22 AC 58 ms
68,300 KB
testcase_23 AC 59 ms
68,300 KB
testcase_24 AC 67 ms
74,432 KB
testcase_25 AC 69 ms
74,432 KB
testcase_26 AC 68 ms
74,432 KB
testcase_27 AC 68 ms
74,432 KB
testcase_28 AC 69 ms
74,432 KB
testcase_29 AC 209 ms
202,988 KB
testcase_30 AC 208 ms
202,980 KB
testcase_31 AC 208 ms
202,980 KB
testcase_32 AC 208 ms
202,988 KB
testcase_33 AC 35 ms
53,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
f = [[int(j) for j in input().split()] for i in range(N)]
dp = [-1 for i in range(1 << N)]

dp[0] = 0

for i in range(1 << N):
	if dp[i] < 0:
		continue
	index = -1
	for j in range(N):
		if not i>>j&1:
			index = j
			break
	if index == -1:
		continue
	for k in range(N):
		if index == k or i>>k&1:
			continue
		dp[i | 1 << index | 1 << k] = max(dp[i | 1 << index | 1 << k],dp[i] + f[index][k])
print(dp[(1 << N) - 1])
0