結果

問題 No.519 アイドルユニット
ユーザー convexineqconvexineq
提出日時 2021-02-18 11:03:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 1,000 ms
コード長 371 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 198,516 KB
最終ジャッジ日時 2024-09-14 18:08:29
合計ジャッジ時間 4,252 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 173 ms
197,704 KB
testcase_01 AC 182 ms
197,032 KB
testcase_02 AC 89 ms
96,720 KB
testcase_03 AC 55 ms
65,252 KB
testcase_04 AC 39 ms
52,616 KB
testcase_05 AC 40 ms
52,676 KB
testcase_06 AC 40 ms
53,820 KB
testcase_07 AC 40 ms
54,128 KB
testcase_08 AC 46 ms
60,596 KB
testcase_09 AC 52 ms
63,208 KB
testcase_10 AC 53 ms
64,120 KB
testcase_11 AC 55 ms
64,884 KB
testcase_12 AC 40 ms
53,188 KB
testcase_13 AC 55 ms
66,288 KB
testcase_14 AC 55 ms
66,012 KB
testcase_15 AC 56 ms
65,548 KB
testcase_16 AC 56 ms
65,172 KB
testcase_17 AC 54 ms
65,184 KB
testcase_18 AC 56 ms
65,136 KB
testcase_19 AC 56 ms
65,944 KB
testcase_20 AC 56 ms
66,768 KB
testcase_21 AC 56 ms
65,024 KB
testcase_22 AC 55 ms
65,084 KB
testcase_23 AC 56 ms
65,408 KB
testcase_24 AC 62 ms
72,728 KB
testcase_25 AC 63 ms
72,476 KB
testcase_26 AC 64 ms
71,560 KB
testcase_27 AC 64 ms
72,736 KB
testcase_28 AC 64 ms
71,412 KB
testcase_29 AC 184 ms
198,516 KB
testcase_30 AC 178 ms
197,540 KB
testcase_31 AC 179 ms
197,600 KB
testcase_32 AC 183 ms
197,536 KB
testcase_33 AC 40 ms
52,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
d = [list(map(int,input().split())) for _ in range(n)]
N = 1<<n
INF = 1<<30
dp = [-INF]*N
dp[0] = 0
for mask in range(N):
    if dp[mask] == -INF:continue
    v = (~mask&-(~mask)).bit_length() - 1
    for w in range(v+1,n):
        if mask>>w&1: continue
        nm = (1<<w)+(1<<v)
        dp[mask|nm] = max(dp[mask|nm], dp[mask] + d[v][w])
print(dp[-1])
0