結果

問題 No.107 モンスター
ユーザー wgrapewgrape
提出日時 2024-10-16 16:08:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 5,000 ms
コード長 1,117 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 71,936 KB
最終ジャッジ日時 2024-10-16 16:08:24
合計ジャッジ時間 3,053 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

# dp[s] = 今まで戦ったモンスターの集合がsであるときの残体力の最大値
# 最大体力はsから求めることが可能(負数となっているモンスターの数)

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

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

for status in range(1 << N):
    # 最大体力を求める
    if dp[status] == 0: # あり得ない状態
        continue
    max_HP = 100
    for i in range(N):
        if ((status >> i) & 1) and D[i] < 0: # 悪いモンスターとあたり済み
            max_HP += 100
    for i in range(N): # 次に戦うモンスター
        if (status >> i) & 1: # 戦い済
            continue
        next_status = status | (1 << i)
        if D[i] < 0: # 悪いモンスターの場合
            if dp[status] + D[i] <= 0: # 負ける
                continue
            dp[next_status] = max(dp[next_status], dp[status] + D[i])
        elif D[i] > 0: # 良いモンスターの場合
            dp[next_status] = max(dp[next_status], min(dp[status] + D[i], max_HP))
            
print(dp[-1])
            
            
        
0