結果

問題 No.519 アイドルユニット
ユーザー titiatitia
提出日時 2024-01-22 00:18:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 192 ms / 1,000 ms
コード長 394 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,572 KB
実行使用メモリ 203,484 KB
最終ジャッジ日時 2024-01-22 00:18:58
合計ジャッジ時間 4,345 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
203,484 KB
testcase_01 AC 186 ms
203,484 KB
testcase_02 AC 88 ms
99,036 KB
testcase_03 AC 83 ms
66,248 KB
testcase_04 AC 37 ms
53,460 KB
testcase_05 AC 36 ms
53,460 KB
testcase_06 AC 36 ms
53,460 KB
testcase_07 AC 37 ms
53,460 KB
testcase_08 AC 43 ms
59,584 KB
testcase_09 AC 52 ms
64,176 KB
testcase_10 AC 56 ms
66,788 KB
testcase_11 AC 55 ms
66,248 KB
testcase_12 AC 37 ms
53,460 KB
testcase_13 AC 55 ms
66,248 KB
testcase_14 AC 55 ms
66,248 KB
testcase_15 AC 55 ms
66,248 KB
testcase_16 AC 55 ms
66,248 KB
testcase_17 AC 56 ms
66,248 KB
testcase_18 AC 55 ms
66,248 KB
testcase_19 AC 55 ms
66,248 KB
testcase_20 AC 55 ms
66,248 KB
testcase_21 AC 56 ms
66,248 KB
testcase_22 AC 56 ms
66,248 KB
testcase_23 AC 57 ms
66,248 KB
testcase_24 AC 62 ms
74,460 KB
testcase_25 AC 62 ms
74,460 KB
testcase_26 AC 62 ms
74,460 KB
testcase_27 AC 62 ms
74,460 KB
testcase_28 AC 62 ms
74,460 KB
testcase_29 AC 183 ms
203,484 KB
testcase_30 AC 183 ms
203,484 KB
testcase_31 AC 185 ms
203,484 KB
testcase_32 AC 192 ms
203,484 KB
testcase_33 AC 39 ms
53,460 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