結果

問題 No.519 アイドルユニット
ユーザー mkawa2mkawa2
提出日時 2021-11-12 09:06:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 1,000 ms
コード長 948 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 199,440 KB
最終ジャッジ日時 2024-11-24 15:21:29
合計ジャッジ時間 4,189 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
198,128 KB
testcase_01 AC 181 ms
198,212 KB
testcase_02 AC 82 ms
99,440 KB
testcase_03 AC 52 ms
65,888 KB
testcase_04 AC 35 ms
53,132 KB
testcase_05 AC 35 ms
52,740 KB
testcase_06 AC 36 ms
53,852 KB
testcase_07 AC 37 ms
53,940 KB
testcase_08 AC 43 ms
61,144 KB
testcase_09 AC 49 ms
64,356 KB
testcase_10 AC 51 ms
64,740 KB
testcase_11 AC 53 ms
65,716 KB
testcase_12 AC 36 ms
52,072 KB
testcase_13 AC 51 ms
66,644 KB
testcase_14 AC 51 ms
66,828 KB
testcase_15 AC 51 ms
66,324 KB
testcase_16 AC 52 ms
65,788 KB
testcase_17 AC 52 ms
67,600 KB
testcase_18 AC 53 ms
66,484 KB
testcase_19 AC 52 ms
65,748 KB
testcase_20 AC 51 ms
66,488 KB
testcase_21 AC 51 ms
65,452 KB
testcase_22 AC 52 ms
66,420 KB
testcase_23 AC 51 ms
66,256 KB
testcase_24 AC 58 ms
72,432 KB
testcase_25 AC 59 ms
73,476 KB
testcase_26 AC 59 ms
72,312 KB
testcase_27 AC 60 ms
73,200 KB
testcase_28 AC 59 ms
73,008 KB
testcase_29 AC 180 ms
198,064 KB
testcase_30 AC 182 ms
197,792 KB
testcase_31 AC 175 ms
199,440 KB
testcase_32 AC 174 ms
198,792 KB
testcase_33 AC 35 ms
53,012 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