結果

問題 No.519 アイドルユニット
ユーザー tookunn_1213tookunn_1213
提出日時 2017-05-29 22:52:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 1,000 ms
コード長 423 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 204,876 KB
最終ジャッジ日時 2024-04-14 06:39:33
合計ジャッジ時間 4,916 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 242 ms
204,036 KB
testcase_01 AC 185 ms
204,440 KB
testcase_02 AC 97 ms
100,144 KB
testcase_03 AC 60 ms
67,312 KB
testcase_04 AC 39 ms
53,352 KB
testcase_05 AC 39 ms
52,248 KB
testcase_06 AC 40 ms
53,364 KB
testcase_07 AC 40 ms
52,920 KB
testcase_08 AC 48 ms
61,364 KB
testcase_09 AC 57 ms
65,208 KB
testcase_10 AC 58 ms
66,236 KB
testcase_11 AC 60 ms
67,760 KB
testcase_12 AC 40 ms
52,504 KB
testcase_13 AC 60 ms
66,856 KB
testcase_14 AC 60 ms
67,048 KB
testcase_15 AC 61 ms
67,908 KB
testcase_16 AC 59 ms
69,088 KB
testcase_17 AC 62 ms
68,692 KB
testcase_18 AC 62 ms
67,112 KB
testcase_19 AC 61 ms
67,864 KB
testcase_20 AC 60 ms
67,360 KB
testcase_21 AC 63 ms
67,400 KB
testcase_22 AC 62 ms
67,120 KB
testcase_23 AC 60 ms
68,048 KB
testcase_24 AC 71 ms
74,604 KB
testcase_25 AC 72 ms
74,604 KB
testcase_26 AC 71 ms
75,296 KB
testcase_27 AC 70 ms
75,544 KB
testcase_28 AC 69 ms
74,756 KB
testcase_29 AC 209 ms
203,488 KB
testcase_30 AC 212 ms
204,876 KB
testcase_31 AC 209 ms
203,972 KB
testcase_32 AC 212 ms
204,120 KB
testcase_33 AC 38 ms
52,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
f = [[int(j) for j in input().split()] for i in range(N)]
dp = [-1] * (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