結果

問題 No.107 モンスター
ユーザー vwxyzvwxyz
提出日時 2024-02-27 11:15:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 754 ms / 5,000 ms
コード長 491 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-09-29 12:00:04
合計ジャッジ時間 6,015 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 25 ms
10,880 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 25 ms
10,880 KB
testcase_08 AC 24 ms
10,752 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 23 ms
10,752 KB
testcase_11 AC 23 ms
10,880 KB
testcase_12 AC 24 ms
10,752 KB
testcase_13 AC 193 ms
11,136 KB
testcase_14 AC 331 ms
11,520 KB
testcase_15 AC 324 ms
11,520 KB
testcase_16 AC 25 ms
10,752 KB
testcase_17 AC 95 ms
11,136 KB
testcase_18 AC 689 ms
13,312 KB
testcase_19 AC 693 ms
13,312 KB
testcase_20 AC 187 ms
11,136 KB
testcase_21 AC 175 ms
11,264 KB
testcase_22 AC 378 ms
11,648 KB
testcase_23 AC 629 ms
12,800 KB
testcase_24 AC 754 ms
13,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
D=list(map(int,input().split()))
inf=1<<30
dp=[-inf]*(1<<N)
dp[0]=100
for bit in range(1<<N):
    c=1
    for i in range(N):
        if bit&1<<i and D[i]<0:
            c+=1
    for i in range(N):
        if not bit&1<<i:
            continue
        if D[i]>0:
            dp[bit]=max(dp[bit],min(dp[bit^1<<i]+D[i],c*100))
        else:
            if dp[bit^1<<i]+D[i]>0:
                dp[bit]=max(dp[bit],dp[bit^1<<i]+D[i])
ans=dp[-1]
if ans<-inf//2:
    ans=0
print(ans)
0