結果

問題 No.519 アイドルユニット
ユーザー mkawa2mkawa2
提出日時 2021-11-12 09:06:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 1,000 ms
コード長 948 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 198,272 KB
最終ジャッジ日時 2024-05-03 14:33:34
合計ジャッジ時間 4,161 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
197,760 KB
testcase_01 AC 188 ms
197,632 KB
testcase_02 AC 86 ms
97,152 KB
testcase_03 AC 56 ms
65,792 KB
testcase_04 AC 39 ms
52,352 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 39 ms
52,672 KB
testcase_08 AC 44 ms
59,800 KB
testcase_09 AC 51 ms
63,488 KB
testcase_10 AC 55 ms
64,384 KB
testcase_11 AC 55 ms
65,152 KB
testcase_12 AC 38 ms
52,480 KB
testcase_13 AC 54 ms
65,280 KB
testcase_14 AC 54 ms
65,408 KB
testcase_15 AC 57 ms
65,792 KB
testcase_16 AC 55 ms
65,536 KB
testcase_17 AC 54 ms
65,792 KB
testcase_18 AC 55 ms
65,280 KB
testcase_19 AC 54 ms
65,536 KB
testcase_20 AC 56 ms
65,408 KB
testcase_21 AC 54 ms
65,536 KB
testcase_22 AC 54 ms
65,536 KB
testcase_23 AC 55 ms
65,408 KB
testcase_24 AC 61 ms
72,064 KB
testcase_25 AC 61 ms
71,680 KB
testcase_26 AC 61 ms
71,808 KB
testcase_27 AC 61 ms
71,680 KB
testcase_28 AC 61 ms
71,552 KB
testcase_29 AC 186 ms
198,272 KB
testcase_30 AC 188 ms
197,632 KB
testcase_31 AC 187 ms
197,760 KB
testcase_32 AC 187 ms
198,272 KB
testcase_33 AC 37 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = 18446744073709551615
inf = 4294967295
md = 10**9+7
# md = 998244353

n = II()
ff = LLI(n)

dp = [-1]*(1 << n)
dp[0] = 0

for s in range(1 << n):
    if dp[s] == -1: continue
    i = 0
    while s >> i & 1: i += 1
    for j in range(i+1, n):
        if s >> j & 1: continue
        ns = s | 1 << i | 1 << j
        dp[ns] = max(dp[ns], dp[s]+ff[i][j])

print(dp[-1])
0