結果

問題 No.60 魔法少女
ユーザー simansiman
提出日時 2022-02-22 15:31:31
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,228 ms / 5,000 ms
コード長 780 bytes
コンパイル時間 28 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 55,296 KB
最終ジャッジ日時 2024-06-30 16:29:34
合計ジャッジ時間 14,702 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 670 ms
47,616 KB
testcase_01 AC 649 ms
47,744 KB
testcase_02 AC 678 ms
47,488 KB
testcase_03 AC 663 ms
47,616 KB
testcase_04 AC 942 ms
48,896 KB
testcase_05 AC 977 ms
55,296 KB
testcase_06 AC 1,179 ms
55,040 KB
testcase_07 AC 1,031 ms
52,992 KB
testcase_08 AC 937 ms
52,224 KB
testcase_09 AC 773 ms
49,920 KB
testcase_10 AC 1,223 ms
55,168 KB
testcase_11 AC 730 ms
49,024 KB
testcase_12 AC 882 ms
52,992 KB
testcase_13 AC 1,228 ms
54,784 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

class Array
  def imos
    h = size
    w = self[0].size

    ret = map(&:dup)

    0.upto(h - 1) do |i|
      1.upto(w - 1) do |j|
        ret[i][j] += ret[i][j - 1]
      end
    end

    1.upto(h - 1) do |i|
      0.upto(w - 1) do |j|
        ret[i][j] += ret[i - 1][j]
      end
    end

    ret
  end
end

geta = 500
S = geta * 3 + 10
N, K = gets.split.map(&:to_i)
E = N.times.map { gets.split.map(&:to_i) }

arr = Array.new(S) { Array.new(S, 0) }

K.times do
  x, y, w, h, d = gets.split.map(&:to_i)
  x += geta
  y += geta

  arr[y][x] += d
  arr[y][x + w + 1] -= d
  arr[y + h + 1][x] -= d
  arr[y + h + 1][x + w + 1] += d
end

arr = arr.imos
ans = 0

E.each do |x, y, hp|
  x += geta
  y += geta
  r_hp = hp - arr[y][x]
  r_hp = 0 if r_hp < 0
  ans += r_hp
end

puts ans
0