結果

問題 No.519 アイドルユニット
ユーザー titiatitia
提出日時 2024-01-22 00:18:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 195 ms / 1,000 ms
コード長 394 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 202,624 KB
最終ジャッジ日時 2024-09-28 06:17:56
合計ジャッジ時間 4,522 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
202,152 KB
testcase_01 AC 195 ms
202,220 KB
testcase_02 AC 94 ms
99,584 KB
testcase_03 AC 59 ms
66,176 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 47 ms
59,904 KB
testcase_09 AC 55 ms
64,256 KB
testcase_10 AC 58 ms
65,280 KB
testcase_11 AC 58 ms
66,176 KB
testcase_12 AC 38 ms
51,840 KB
testcase_13 AC 63 ms
66,048 KB
testcase_14 AC 63 ms
66,432 KB
testcase_15 AC 58 ms
66,048 KB
testcase_16 AC 60 ms
66,560 KB
testcase_17 AC 58 ms
66,560 KB
testcase_18 AC 58 ms
66,176 KB
testcase_19 AC 58 ms
66,048 KB
testcase_20 AC 57 ms
66,560 KB
testcase_21 AC 57 ms
66,560 KB
testcase_22 AC 57 ms
66,304 KB
testcase_23 AC 58 ms
66,304 KB
testcase_24 AC 67 ms
72,960 KB
testcase_25 AC 65 ms
72,960 KB
testcase_26 AC 65 ms
73,088 KB
testcase_27 AC 66 ms
72,960 KB
testcase_28 AC 65 ms
72,704 KB
testcase_29 AC 187 ms
201,984 KB
testcase_30 AC 188 ms
202,240 KB
testcase_31 AC 188 ms
201,856 KB
testcase_32 AC 191 ms
202,624 KB
testcase_33 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
F=[list(map(int,input().split())) for i in range(n)]

DP=[-1]*(1<<n)
DP[0]=0

for i in range(1<<n):
    if DP[i]<0:
        continue
    for j in range(n):
        if i & (1<<j) == 0:
            start=j
            break

    for j in range(start+1,n):
        if i & (1<<j) == 0:
            DP[i|(1<<start)|(1<<j)]=max(DP[i|(1<<start)|(1<<j)],DP[i]+F[start][j])

print(DP[-1])
0