結果

問題 No.60 魔法少女
ユーザー gigurururugigurururu
提出日時 2014-11-10 00:12:45
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 469 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 64,256 KB
最終ジャッジ日時 2024-12-31 09:11:51
合計ジャッジ時間 14,106 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,160 KB
testcase_01 AC 92 ms
12,160 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 509 ms
34,176 KB
testcase_04 AC 1,196 ms
55,040 KB
testcase_05 AC 1,224 ms
57,856 KB
testcase_06 AC 1,518 ms
63,872 KB
testcase_07 AC 1,292 ms
58,496 KB
testcase_08 AC 1,066 ms
55,424 KB
testcase_09 AC 867 ms
50,688 KB
testcase_10 AC 1,431 ms
62,720 KB
testcase_11 WA -
testcase_12 AC 1,040 ms
53,632 KB
testcase_13 AC 1,513 ms
64,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def g;gets.split.map(&:to_i);end
n,k=g
e=(1..n).map{g}
t=(1..k).map{g}
xn=t.map{|x,_|x}.min
xx=t.map{|x,y,w,_|x+w}.max
yn=t.map{|x,y,_|y}.min
yx=t.map{|x,y,w,h,_|y+h}.max

m=(yn..yx+1).map{[0]*(xx-xn+1+1)}

t.each{|x,y,w,h,d|
  x-=xn;y-=yn
  m[y][x]+=d
  m[y][x+w+1]-=d
  m[y+h+1][x]-=d
  m[y+h+1][x+w+1]+=d
}
a=[0]*(xx-xn+1)
m.map!{|i|
  s=0
  a=a.zip(i.map{|j|s+=j}).map{|j,l|j+l}
}

p e.map{|x,y,h|[h-(m[y-yn]||[])[x-xn]||0,0].max}.inject(:+)
0