結果

問題 No.107 モンスター
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2015-11-04 13:16:34
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 887 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-09-13 12:23:04
合計ジャッジ時間 4,465 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,288 KB
testcase_01 AC 92 ms
12,160 KB
testcase_02 AC 87 ms
12,288 KB
testcase_03 WA -
testcase_04 AC 88 ms
12,416 KB
testcase_05 AC 90 ms
12,288 KB
testcase_06 AC 87 ms
12,288 KB
testcase_07 AC 87 ms
12,288 KB
testcase_08 AC 87 ms
12,032 KB
testcase_09 AC 85 ms
12,288 KB
testcase_10 AC 86 ms
12,160 KB
testcase_11 WA -
testcase_12 AC 88 ms
12,160 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 209 ms
12,544 KB
testcase_16 AC 87 ms
12,288 KB
testcase_17 AC 111 ms
12,032 KB
testcase_18 AC 243 ms
13,056 KB
testcase_19 AC 241 ms
13,056 KB
testcase_20 AC 153 ms
12,288 KB
testcase_21 AC 142 ms
12,416 KB
testcase_22 WA -
testcase_23 AC 299 ms
12,928 KB
testcase_24 AC 261 ms
12,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# Here your code !

n = gets.to_i
S = 1 << n
D = gets.split.map(&:to_i)
HP = Array.new(S, -1)
HPMAX = Array.new(S, 100)
HP[0] = 100 # HP[s]はsのモンスターに出会った後の残HP
HPMAX[0] = 100 # HPMAX[s]はsのモンスターに出会った後の最大HP

S.times do |s|
    n.times do |i|
        mask = 1 << i
        if s & mask > 0 && D[i] < 0 
            HPMAX[s] += 100
        end
    end
    next if HP[s] < 0
    n.times do |i|
        mask = 1 << i
        if s & mask == 0 
            if D[i] >= 0
                hp = HP[s] + D[i] < HPMAX[s] ? HP[s] + D[i] : HPMAX[s]
                other = HP[s | mask]
                HP[s | mask] =  [hp, other].max
            else
                hp = HP[s] + D[i]
                other = HP[s | mask]
                HP[s | mask] = [hp, other].max
            end
        end
    end
end
puts HP[S - 1] < 0 ? 0 : HP[S - 1]
0