結果

問題 No.107 モンスター
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-29 13:44:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 5,000 ms
コード長 626 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 76,480 KB
最終ジャッジ日時 2024-07-16 10:11:34
合計ジャッジ時間 2,468 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,192 KB
testcase_01 AC 35 ms
52,504 KB
testcase_02 AC 34 ms
54,156 KB
testcase_03 AC 39 ms
52,932 KB
testcase_04 AC 36 ms
52,868 KB
testcase_05 AC 33 ms
53,068 KB
testcase_06 AC 34 ms
52,896 KB
testcase_07 AC 35 ms
53,144 KB
testcase_08 AC 34 ms
52,560 KB
testcase_09 AC 36 ms
51,944 KB
testcase_10 AC 39 ms
51,816 KB
testcase_11 AC 35 ms
52,612 KB
testcase_12 AC 36 ms
53,856 KB
testcase_13 AC 63 ms
71,492 KB
testcase_14 AC 70 ms
71,800 KB
testcase_15 AC 70 ms
70,700 KB
testcase_16 AC 36 ms
53,292 KB
testcase_17 AC 62 ms
70,768 KB
testcase_18 AC 86 ms
76,480 KB
testcase_19 AC 84 ms
76,244 KB
testcase_20 AC 63 ms
70,444 KB
testcase_21 AC 64 ms
70,388 KB
testcase_22 AC 72 ms
74,204 KB
testcase_23 AC 91 ms
76,184 KB
testcase_24 AC 83 ms
76,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
D = list(map(int, input().split()))
bad = set()
for i, d in enumerate(D):
    if d < 0:
        bad.add(i)
INF = 10**18
dp = [-INF]*(1<<n)
dp[0] = 100
for s in range(1<<n):
    maxh = 100
    for i in bad:
        if (s>>i)&1:
            maxh += 100
    for i in range(n):
        if (s>>i) & 1:
            continue
        ns = s|(1<<i)
        if D[i] >= 0:
            dp[ns] = max(dp[ns], min(maxh, dp[s]+D[i]))
        else:
            if dp[s]+D[i] <= 0:
                continue
            else:
                dp[ns] = max(dp[ns], dp[s]+D[i])
if dp[-1] <= 0:
    print(0)
else:
    print(dp[-1])
0