結果

問題 No.107 モンスター
ユーザー tobusakanatobusakana
提出日時 2022-10-23 19:49:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 981 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 70,656 KB
最終ジャッジ日時 2024-07-02 10:18:08
合計ジャッジ時間 2,303 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 AC 39 ms
52,224 KB
testcase_11 AC 40 ms
51,936 KB
testcase_12 AC 39 ms
51,840 KB
testcase_13 AC 63 ms
67,200 KB
testcase_14 AC 65 ms
67,328 KB
testcase_15 AC 66 ms
67,328 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 66 ms
68,352 KB
testcase_18 AC 62 ms
66,944 KB
testcase_19 AC 63 ms
67,584 KB
testcase_20 AC 66 ms
68,224 KB
testcase_21 AC 67 ms
68,992 KB
testcase_22 AC 70 ms
70,272 KB
testcase_23 AC 70 ms
69,760 KB
testcase_24 AC 72 ms
70,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

N = int(readline())
D = list(map(int,readline().split()))

# dp[S] = 今までに出会ったモンスターの集合Sに対する、最大の体力
# 回復の最大値はSの情報からわかる

dp = [0] * (1 << N)
dp[0] = 100
for status in range(1 << N):
  if dp[status] == 0: # 0の場合は次の行動が出来ない。
    continue
  # 現在の状態での最大体力を求める。
  level_up = 0
  for i in range(N):
    if D[i] < 0 and (status >> i) & 1: # 悪いモンスターを倒した
      level_up += 1
  max_hp = 100 * (level_up + 1)
  # 次に出会うモンスターを全探索
  for target in range(N):
    if (status >> target) & 1:
      continue
    next_status = status | (1 << target)
    if D[target] > 0: # 良いモンスター
      hp = min(max_hp, dp[status] + D[target])
    else:
      hp = max(0, dp[status] + D[target])
    if dp[next_status] < hp:
      dp[next_status] = hp
      
print(dp[-1])
0