結果

問題 No.519 アイドルユニット
ユーザー ああいいああいい
提出日時 2022-03-08 17:05:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 225 ms / 1,000 ms
コード長 451 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 201,556 KB
最終ジャッジ日時 2024-07-23 17:04:06
合計ジャッジ時間 4,634 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 219 ms
201,376 KB
testcase_01 AC 224 ms
201,344 KB
testcase_02 AC 104 ms
99,072 KB
testcase_03 AC 57 ms
65,536 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 40 ms
52,224 KB
testcase_08 AC 46 ms
60,032 KB
testcase_09 AC 53 ms
63,360 KB
testcase_10 AC 58 ms
65,408 KB
testcase_11 AC 58 ms
66,304 KB
testcase_12 AC 38 ms
52,096 KB
testcase_13 AC 57 ms
65,536 KB
testcase_14 AC 57 ms
66,048 KB
testcase_15 AC 58 ms
65,664 KB
testcase_16 AC 56 ms
65,792 KB
testcase_17 AC 56 ms
65,792 KB
testcase_18 AC 58 ms
66,304 KB
testcase_19 AC 58 ms
65,896 KB
testcase_20 AC 57 ms
65,792 KB
testcase_21 AC 58 ms
65,792 KB
testcase_22 AC 57 ms
65,792 KB
testcase_23 AC 58 ms
65,536 KB
testcase_24 AC 65 ms
72,832 KB
testcase_25 AC 65 ms
73,088 KB
testcase_26 AC 65 ms
72,664 KB
testcase_27 AC 65 ms
72,704 KB
testcase_28 AC 64 ms
72,448 KB
testcase_29 AC 222 ms
201,556 KB
testcase_30 AC 225 ms
201,256 KB
testcase_31 AC 224 ms
201,100 KB
testcase_32 AC 223 ms
201,344 KB
testcase_33 AC 38 ms
51,840 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]
        break
print(dp[-1])
0