結果

問題 No.107 モンスター
ユーザー gahougahou
提出日時 2016-11-15 13:09:18
言語 Python2
(2.7.18)
結果
AC  
実行時間 566 ms / 5,000 ms
コード長 613 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 7,076 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-12-21 07:22:50
合計ジャッジ時間 4,884 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,272 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 11 ms
6,272 KB
testcase_03 AC 10 ms
6,272 KB
testcase_04 AC 11 ms
6,272 KB
testcase_05 AC 10 ms
6,144 KB
testcase_06 AC 12 ms
6,272 KB
testcase_07 AC 11 ms
6,144 KB
testcase_08 AC 13 ms
6,272 KB
testcase_09 AC 12 ms
6,272 KB
testcase_10 AC 12 ms
6,144 KB
testcase_11 AC 12 ms
6,272 KB
testcase_12 AC 12 ms
6,272 KB
testcase_13 AC 148 ms
6,528 KB
testcase_14 AC 302 ms
6,656 KB
testcase_15 AC 306 ms
6,656 KB
testcase_16 AC 13 ms
6,144 KB
testcase_17 AC 70 ms
6,400 KB
testcase_18 AC 509 ms
6,656 KB
testcase_19 AC 506 ms
6,784 KB
testcase_20 AC 158 ms
6,528 KB
testcase_21 AC 146 ms
6,528 KB
testcase_22 AC 287 ms
6,528 KB
testcase_23 AC 566 ms
7,040 KB
testcase_24 AC 538 ms
6,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def maxLife(D,_st):
  st=_st
  c=0
  i=0
  while True:
    if st%2==1 and D[i]<0:
      c+=1
    i+=1
    st=(st-st%2)/2
    if st==0: break
  return (c+1)*100

def calcLife(D,dp,_st):
  st=_st
  i=0
  tmpMax=0
  limitLife=maxLife(D,_st)
  while True:
    if st%2==1 and dp[_st-2**i]>0:
      life=min(dp[_st-2**i]+D[i],limitLife)
      tmpMax=max(tmpMax,life)
    i+=1
    st=(st-st%2)/2
    if st==0: break
  return tmpMax

N=int(raw_input())
D=map(int,raw_input().split())
# dp[i] : max life for beat status(i) monsters
dp=[0]*(2**N)
dp[0]=100
for i in xrange(1,2**N):
  dp[i]=calcLife(D,dp,i)
print dp[2**N-1]
0