結果

問題 No.519 アイドルユニット
ユーザー tookunn_1213tookunn_1213
提出日時 2017-05-29 22:50:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 286 ms / 1,000 ms
コード長 436 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 203,392 KB
最終ジャッジ日時 2024-09-21 18:13:50
合計ジャッジ時間 4,891 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 270 ms
203,392 KB
testcase_01 AC 286 ms
203,264 KB
testcase_02 AC 114 ms
99,968 KB
testcase_03 AC 64 ms
66,816 KB
testcase_04 AC 38 ms
51,584 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 38 ms
52,224 KB
testcase_07 AC 41 ms
52,480 KB
testcase_08 AC 51 ms
60,800 KB
testcase_09 AC 58 ms
64,384 KB
testcase_10 AC 60 ms
65,536 KB
testcase_11 AC 61 ms
66,816 KB
testcase_12 AC 37 ms
51,968 KB
testcase_13 AC 61 ms
66,816 KB
testcase_14 AC 63 ms
66,816 KB
testcase_15 AC 63 ms
66,816 KB
testcase_16 AC 64 ms
66,816 KB
testcase_17 AC 64 ms
66,560 KB
testcase_18 AC 62 ms
66,688 KB
testcase_19 AC 61 ms
66,688 KB
testcase_20 AC 61 ms
66,944 KB
testcase_21 AC 61 ms
66,816 KB
testcase_22 AC 60 ms
66,560 KB
testcase_23 AC 61 ms
66,816 KB
testcase_24 AC 77 ms
74,240 KB
testcase_25 AC 78 ms
74,368 KB
testcase_26 AC 78 ms
74,880 KB
testcase_27 AC 75 ms
74,368 KB
testcase_28 AC 77 ms
74,368 KB
testcase_29 AC 277 ms
203,264 KB
testcase_30 AC 268 ms
203,264 KB
testcase_31 AC 264 ms
203,392 KB
testcase_32 AC 267 ms
203,136 KB
testcase_33 AC 38 ms
51,840 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