結果

問題 No.519 アイドルユニット
ユーザー convexineqconvexineq
提出日時 2021-02-18 11:15:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 1,000 ms
コード長 502 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 89,120 KB
最終ジャッジ日時 2024-09-14 18:17:12
合計ジャッジ時間 4,102 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
84,964 KB
testcase_01 AC 149 ms
87,952 KB
testcase_02 AC 89 ms
74,124 KB
testcase_03 AC 60 ms
66,440 KB
testcase_04 AC 42 ms
55,172 KB
testcase_05 AC 42 ms
55,368 KB
testcase_06 AC 42 ms
53,992 KB
testcase_07 AC 43 ms
54,152 KB
testcase_08 AC 48 ms
61,696 KB
testcase_09 AC 57 ms
66,560 KB
testcase_10 AC 54 ms
64,332 KB
testcase_11 AC 59 ms
66,456 KB
testcase_12 AC 43 ms
54,760 KB
testcase_13 AC 59 ms
67,516 KB
testcase_14 AC 59 ms
67,340 KB
testcase_15 AC 61 ms
67,988 KB
testcase_16 AC 59 ms
67,336 KB
testcase_17 AC 61 ms
67,772 KB
testcase_18 AC 60 ms
66,848 KB
testcase_19 AC 58 ms
66,764 KB
testcase_20 AC 60 ms
66,256 KB
testcase_21 AC 60 ms
66,864 KB
testcase_22 AC 61 ms
67,832 KB
testcase_23 AC 60 ms
66,660 KB
testcase_24 AC 67 ms
69,412 KB
testcase_25 AC 69 ms
70,240 KB
testcase_26 AC 68 ms
69,784 KB
testcase_27 AC 69 ms
69,380 KB
testcase_28 AC 68 ms
69,136 KB
testcase_29 AC 151 ms
89,020 KB
testcase_30 AC 159 ms
88,056 KB
testcase_31 AC 160 ms
87,844 KB
testcase_32 AC 147 ms
89,120 KB
testcase_33 AC 42 ms
54,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
d = [list(map(int,input().split())) for _ in range(n)]
N = 1<<n
INF = 1<<30
dp = {0:0}
from collections import deque
q = deque([0])
while q:
    mask = q.popleft()
    v = (~mask&-(~mask)).bit_length() - 1
    for w in range(v+1,n):
        if mask>>w&1: continue
        nmask = mask | ((1<<w)+(1<<v))
        if nmask in dp:
            dp[nmask] = max(dp[nmask], dp[mask] + d[v][w])
        else:
            dp[nmask] = dp[mask] + d[v][w]
            q.append(nmask)
print(dp[N-1])
0