結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
197,792 KB
testcase_01 AC 188 ms
198,112 KB
testcase_02 AC 88 ms
98,712 KB
testcase_03 AC 57 ms
66,264 KB
testcase_04 AC 38 ms
52,736 KB
testcase_05 AC 38 ms
53,844 KB
testcase_06 AC 39 ms
53,844 KB
testcase_07 AC 40 ms
52,808 KB
testcase_08 AC 46 ms
61,548 KB
testcase_09 AC 53 ms
65,060 KB
testcase_10 AC 55 ms
65,992 KB
testcase_11 AC 57 ms
65,576 KB
testcase_12 AC 39 ms
52,308 KB
testcase_13 AC 57 ms
65,676 KB
testcase_14 AC 56 ms
66,172 KB
testcase_15 AC 56 ms
66,816 KB
testcase_16 AC 56 ms
67,412 KB
testcase_17 AC 55 ms
66,796 KB
testcase_18 AC 56 ms
66,924 KB
testcase_19 AC 56 ms
65,936 KB
testcase_20 AC 57 ms
66,212 KB
testcase_21 AC 56 ms
66,832 KB
testcase_22 AC 56 ms
65,800 KB
testcase_23 AC 57 ms
66,760 KB
testcase_24 AC 64 ms
72,348 KB
testcase_25 AC 65 ms
71,812 KB
testcase_26 AC 63 ms
72,036 KB
testcase_27 AC 64 ms
73,000 KB
testcase_28 AC 62 ms
72,968 KB
testcase_29 AC 188 ms
197,948 KB
testcase_30 AC 190 ms
197,792 KB
testcase_31 AC 190 ms
197,640 KB
testcase_32 AC 186 ms
197,824 KB
testcase_33 AC 39 ms
52,896 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
    i = 0
    while bit & (1 << i):i += 1
    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]
print(dp[-1])
0