結果

問題 No.107 モンスター
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-03-04 01:00:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 5,000 ms
コード長 778 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 77,488 KB
最終ジャッジ日時 2024-09-18 00:51:13
合計ジャッジ時間 2,634 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,588 KB
testcase_01 AC 40 ms
55,516 KB
testcase_02 AC 38 ms
55,916 KB
testcase_03 AC 39 ms
55,880 KB
testcase_04 AC 39 ms
56,552 KB
testcase_05 AC 41 ms
56,552 KB
testcase_06 AC 39 ms
54,592 KB
testcase_07 AC 39 ms
55,792 KB
testcase_08 AC 39 ms
56,160 KB
testcase_09 AC 39 ms
55,164 KB
testcase_10 AC 39 ms
57,312 KB
testcase_11 AC 40 ms
55,424 KB
testcase_12 AC 39 ms
55,800 KB
testcase_13 AC 86 ms
76,804 KB
testcase_14 AC 73 ms
76,812 KB
testcase_15 AC 71 ms
77,120 KB
testcase_16 AC 40 ms
56,644 KB
testcase_17 AC 73 ms
76,756 KB
testcase_18 AC 69 ms
77,148 KB
testcase_19 AC 68 ms
74,972 KB
testcase_20 AC 74 ms
77,044 KB
testcase_21 AC 74 ms
76,724 KB
testcase_22 AC 95 ms
76,832 KB
testcase_23 AC 80 ms
77,180 KB
testcase_24 AC 88 ms
77,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
import sys,math
input = sys.stdin.readline

N = int(input())
D = list(map(int,input().split()))
msk0 = 0
msk1 = 0
for i,d in enumerate(D):
    if d<0:
        msk0 += (1<<i)
    else:
        msk1 += (1<<i)
    
INF = (1<<60)

dp = [-1]*(1<<N)
dp[0] = 100

for i in range(1<<N):
    
    if dp[i]<=0:
        continue
    
    cnd = []
    for j in range(N):
        if (i>>j)&1:
            continue
        cnd.append(j)
    
    for c in cnd:
        
        if (1<<c)&msk0:
            
            dp[i|(1<<c)] = max(dp[i|(1<<c)],dp[i] + D[c])
            
        else:
            
            dp[i|(1<<c)] = max(dp[i|(1<<c)],min(dp[i]+D[c],100*(bin(i&msk0).count('1') + 1)))
print(max(dp[-1],0))
0