結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 206 ms
201,416 KB
testcase_01 AC 204 ms
201,616 KB
testcase_02 AC 104 ms
99,328 KB
testcase_03 AC 62 ms
66,048 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 49 ms
59,776 KB
testcase_09 AC 59 ms
63,488 KB
testcase_10 AC 62 ms
65,024 KB
testcase_11 AC 62 ms
65,664 KB
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 63 ms
66,048 KB
testcase_14 AC 62 ms
66,176 KB
testcase_15 AC 62 ms
65,664 KB
testcase_16 AC 62 ms
65,792 KB
testcase_17 AC 63 ms
65,920 KB
testcase_18 AC 64 ms
65,792 KB
testcase_19 AC 63 ms
65,664 KB
testcase_20 AC 63 ms
65,664 KB
testcase_21 AC 63 ms
65,664 KB
testcase_22 AC 64 ms
66,048 KB
testcase_23 AC 63 ms
66,048 KB
testcase_24 AC 74 ms
72,576 KB
testcase_25 AC 74 ms
72,448 KB
testcase_26 AC 74 ms
72,960 KB
testcase_27 AC 73 ms
72,704 KB
testcase_28 AC 73 ms
72,704 KB
testcase_29 AC 211 ms
201,600 KB
testcase_30 AC 198 ms
201,600 KB
testcase_31 AC 192 ms
201,352 KB
testcase_32 AC 198 ms
201,624 KB
testcase_33 AC 39 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
F = [list(map(int,input().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