結果

問題 No.519 アイドルユニット
ユーザー ああいいああいい
提出日時 2022-03-08 17:07:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 170 ms / 1,000 ms
コード長 543 bytes
コンパイル時間 736 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 201,968 KB
最終ジャッジ日時 2024-07-23 17:08:23
合計ジャッジ時間 4,006 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 167 ms
201,968 KB
testcase_01 AC 169 ms
201,868 KB
testcase_02 AC 91 ms
99,592 KB
testcase_03 AC 57 ms
67,224 KB
testcase_04 AC 38 ms
53,216 KB
testcase_05 AC 38 ms
52,336 KB
testcase_06 AC 39 ms
52,896 KB
testcase_07 AC 39 ms
52,836 KB
testcase_08 AC 46 ms
61,436 KB
testcase_09 AC 53 ms
64,028 KB
testcase_10 AC 57 ms
66,056 KB
testcase_11 AC 57 ms
65,772 KB
testcase_12 AC 38 ms
52,388 KB
testcase_13 AC 56 ms
66,468 KB
testcase_14 AC 55 ms
66,368 KB
testcase_15 AC 56 ms
66,940 KB
testcase_16 AC 56 ms
65,912 KB
testcase_17 AC 56 ms
66,276 KB
testcase_18 AC 56 ms
66,648 KB
testcase_19 AC 55 ms
66,364 KB
testcase_20 AC 56 ms
66,092 KB
testcase_21 AC 55 ms
66,680 KB
testcase_22 AC 56 ms
66,312 KB
testcase_23 AC 56 ms
66,584 KB
testcase_24 AC 64 ms
73,424 KB
testcase_25 AC 64 ms
73,044 KB
testcase_26 AC 65 ms
73,096 KB
testcase_27 AC 62 ms
74,348 KB
testcase_28 AC 63 ms
73,348 KB
testcase_29 AC 167 ms
201,836 KB
testcase_30 AC 169 ms
201,504 KB
testcase_31 AC 170 ms
201,480 KB
testcase_32 AC 169 ms
201,492 KB
testcase_33 AC 38 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
rr = sys.stdin

n = int(rr.readline())
F = [list(map(int,rr.readline().split())) for _ in range(n)]
dp = [-1] * (1 << n)
dp[0] = 0
for bit in range(1 << n):
    if dp[bit] < 0:continue
    for i in range(n):
        if bit >> i & 1:continue
        b = bit | (1 <<i)
        for j in range(i+1,n):
            if bit >> j & 1:continue
            bj = b | (1 << j)
            #if dp[bj] < dp[bit] + F[i][j]:
            #    dp[bj] = dp[bit] + F[i][j]
            dp[bj] = max(dp[bj],dp[bit] + F[i][j])
        break
print(dp[-1])
0