結果

問題 No.60 魔法少女
ユーザー letrangerjpletrangerjp
提出日時 2017-06-18 00:35:49
言語 Ruby
(3.3.0)
結果
AC  
実行時間 836 ms / 5,000 ms
コード長 736 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 36,224 KB
最終ジャッジ日時 2024-10-01 11:51:14
合計ジャッジ時間 8,620 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
19,712 KB
testcase_01 AC 295 ms
19,712 KB
testcase_02 AC 300 ms
19,584 KB
testcase_03 AC 306 ms
19,840 KB
testcase_04 AC 587 ms
27,648 KB
testcase_05 AC 609 ms
30,592 KB
testcase_06 AC 834 ms
36,224 KB
testcase_07 AC 686 ms
30,976 KB
testcase_08 AC 535 ms
28,160 KB
testcase_09 AC 396 ms
22,400 KB
testcase_10 AC 811 ms
35,200 KB
testcase_11 AC 358 ms
21,120 KB
testcase_12 AC 513 ms
26,880 KB
testcase_13 AC 836 ms
36,224 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, K = gets.split.take(2).map(&:to_i)
Monsters = N.times.map{ gets.split.take(3).map(&:to_i) }
Spells = K.times.map{ gets.split.take(5).map(&:to_i) }
M = 1001

cusums = (M + 1).times.map { [0] * (M + 1) }
# 座標ごとの総ダメージの累積和
Spells.each{|spell|
  x, y, w, h, d = spell
  x += 500
  y += 500
  xx = [M, x + w + 1].min
  yy = [M, y + h + 1].min
  cusums[x][y] += d
  cusums[xx][yy] += d
  cusums[xx][y] -= d
  cusums[x][yy] -= d
}
M.times{|x|
  M.times{|y|
    cusums[x][y + 1] += cusums[x][y]
  }
}
M.times{|y|
  M.times{|x|
    cusums[x + 1][y] += cusums[x][y]
  }
}

# 残り体力の合計
ans = 0
Monsters.each{|monster|
  x, y, hp = monster
  x += 500
  y += 500
  ans += [0, hp - cusums[x][y]].max
}
p ans
0