結果

問題 No.519 アイドルユニット
ユーザー ああいいああいい
提出日時 2022-03-08 17:10:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 232 ms / 1,000 ms
コード長 549 bytes
コンパイル時間 513 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 201,600 KB
最終ジャッジ日時 2024-07-23 17:10:37
合計ジャッジ時間 5,259 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 206 ms
201,512 KB
testcase_01 AC 211 ms
201,472 KB
testcase_02 AC 94 ms
99,200 KB
testcase_03 AC 59 ms
65,664 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 39 ms
52,352 KB
testcase_06 AC 40 ms
52,096 KB
testcase_07 AC 40 ms
52,480 KB
testcase_08 AC 48 ms
59,648 KB
testcase_09 AC 55 ms
64,000 KB
testcase_10 AC 58 ms
64,896 KB
testcase_11 AC 58 ms
65,664 KB
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 61 ms
65,664 KB
testcase_14 AC 61 ms
65,792 KB
testcase_15 AC 60 ms
66,048 KB
testcase_16 AC 60 ms
65,536 KB
testcase_17 AC 60 ms
65,664 KB
testcase_18 AC 60 ms
65,664 KB
testcase_19 AC 60 ms
66,048 KB
testcase_20 AC 60 ms
65,920 KB
testcase_21 AC 60 ms
65,664 KB
testcase_22 AC 60 ms
65,792 KB
testcase_23 AC 59 ms
65,536 KB
testcase_24 AC 67 ms
72,960 KB
testcase_25 AC 69 ms
72,448 KB
testcase_26 AC 68 ms
72,704 KB
testcase_27 AC 68 ms
72,576 KB
testcase_28 AC 66 ms
72,704 KB
testcase_29 AC 232 ms
201,600 KB
testcase_30 AC 180 ms
201,600 KB
testcase_31 AC 178 ms
201,344 KB
testcase_32 AC 176 ms
201,484 KB
testcase_33 AC 40 ms
51,968 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<<n)-1])
0