結果

問題 No.107 モンスター
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2015-11-04 13:17:50
言語 Ruby
(3.3.0)
結果
AC  
実行時間 277 ms / 5,000 ms
コード長 866 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-06-08 01:35:00
合計ジャッジ時間 4,564 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,288 KB
testcase_01 AC 78 ms
12,288 KB
testcase_02 AC 79 ms
12,032 KB
testcase_03 AC 83 ms
12,032 KB
testcase_04 AC 88 ms
12,288 KB
testcase_05 AC 82 ms
12,160 KB
testcase_06 AC 80 ms
12,160 KB
testcase_07 AC 80 ms
12,160 KB
testcase_08 AC 80 ms
12,160 KB
testcase_09 AC 81 ms
12,160 KB
testcase_10 AC 79 ms
12,032 KB
testcase_11 AC 81 ms
12,288 KB
testcase_12 AC 81 ms
12,160 KB
testcase_13 AC 133 ms
12,160 KB
testcase_14 AC 199 ms
12,544 KB
testcase_15 AC 208 ms
12,416 KB
testcase_16 AC 85 ms
12,160 KB
testcase_17 AC 102 ms
12,288 KB
testcase_18 AC 234 ms
13,056 KB
testcase_19 AC 233 ms
13,056 KB
testcase_20 AC 141 ms
12,032 KB
testcase_21 AC 139 ms
12,160 KB
testcase_22 AC 187 ms
12,416 KB
testcase_23 AC 277 ms
12,800 KB
testcase_24 AC 254 ms
13,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# Here your code !

n = gets.to_i
S = 1 << n
D = gets.split.map(&:to_i)
HP = Array.new(S, 0)
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