結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,288 KB
testcase_01 AC 75 ms
12,160 KB
testcase_02 AC 79 ms
12,160 KB
testcase_03 AC 447 ms
34,048 KB
testcase_04 AC 1,006 ms
54,912 KB
testcase_05 AC 988 ms
57,984 KB
testcase_06 AC 1,251 ms
64,000 KB
testcase_07 AC 1,098 ms
58,752 KB
testcase_08 AC 928 ms
55,424 KB
testcase_09 AC 766 ms
50,816 KB
testcase_10 AC 1,195 ms
62,592 KB
testcase_11 WA -
testcase_12 AC 990 ms
53,888 KB
testcase_13 AC 1,271 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].max}.inject(:+)
0