結果

問題 No.519 アイドルユニット
ユーザー ああいいああいい
提出日時 2022-03-08 17:01:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 1,000 ms
コード長 397 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 197,924 KB
最終ジャッジ日時 2024-07-23 17:01:24
合計ジャッジ時間 4,801 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 226 ms
197,808 KB
testcase_01 AC 231 ms
197,880 KB
testcase_02 AC 85 ms
97,440 KB
testcase_03 AC 58 ms
65,152 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 AC 48 ms
59,904 KB
testcase_09 AC 55 ms
63,104 KB
testcase_10 AC 57 ms
64,512 KB
testcase_11 AC 58 ms
65,448 KB
testcase_12 AC 41 ms
51,968 KB
testcase_13 AC 59 ms
65,280 KB
testcase_14 AC 59 ms
65,476 KB
testcase_15 AC 60 ms
65,024 KB
testcase_16 AC 60 ms
65,392 KB
testcase_17 AC 59 ms
65,536 KB
testcase_18 AC 58 ms
65,536 KB
testcase_19 AC 58 ms
65,408 KB
testcase_20 AC 60 ms
65,664 KB
testcase_21 AC 60 ms
65,536 KB
testcase_22 AC 60 ms
65,280 KB
testcase_23 AC 61 ms
65,408 KB
testcase_24 AC 66 ms
72,320 KB
testcase_25 AC 66 ms
72,192 KB
testcase_26 AC 66 ms
71,680 KB
testcase_27 AC 65 ms
71,680 KB
testcase_28 AC 69 ms
71,680 KB
testcase_29 AC 234 ms
197,924 KB
testcase_30 AC 249 ms
197,760 KB
testcase_31 AC 219 ms
197,504 KB
testcase_32 AC 218 ms
197,760 KB
testcase_33 AC 40 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
    i = 0
    while bit >> i & 1: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