結果

問題 No.107 モンスター
ユーザー tipstar0125tipstar0125
提出日時 2024-01-31 15:21:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 581 ms / 5,000 ms
コード長 884 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 172,672 KB
最終ジャッジ日時 2024-09-28 10:22:49
合計ジャッジ時間 5,454 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 41 ms
52,224 KB
testcase_02 AC 39 ms
52,224 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 39 ms
52,352 KB
testcase_11 AC 39 ms
52,096 KB
testcase_12 AC 46 ms
59,776 KB
testcase_13 AC 165 ms
97,408 KB
testcase_14 AC 258 ms
121,344 KB
testcase_15 AC 259 ms
121,216 KB
testcase_16 AC 51 ms
61,312 KB
testcase_17 AC 121 ms
85,888 KB
testcase_18 AC 468 ms
172,032 KB
testcase_19 AC 449 ms
172,160 KB
testcase_20 AC 172 ms
96,896 KB
testcase_21 AC 169 ms
97,152 KB
testcase_22 AC 288 ms
121,472 KB
testcase_23 AC 581 ms
172,544 KB
testcase_24 AC 557 ms
172,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
D=list(map(int,input().split()))
MAX=1<<N
dp=[[[0,100] for _ in range(N)] for _ in range(MAX)]
for i in range(N):
    if D[i]<0:dp[1<<i][i]=[100+D[i],200]
    else:dp[1<<i][i]=[100,100]

for s in range(1,MAX):
    for frm in range(N):
        if s&(1<<frm)==0:continue
        for to in range(N):
            if s&(1<<to)==0:continue
            bs=s^(1<<to)
            if dp[bs][frm][0]<=0:continue
            if D[to]<0:
                if dp[bs][frm][0]+D[to]>dp[s][to][0]:
                    dp[s][to][0]=dp[bs][frm][0]+D[to]
                    dp[s][to][1]=dp[bs][frm][1]+100
            else:
                mx=dp[bs][frm][1]
                if min(mx,dp[bs][frm][0]+D[to])>dp[s][to][0]:
                    dp[s][to][0]=min(mx,dp[bs][frm][0]+D[to])
                    dp[s][to][1]=dp[bs][frm][1]
ans=0
for i in range(N):ans=max(ans,dp[-1][i][0])
print(ans)
0