結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,288 KB
testcase_01 AC 83 ms
12,416 KB
testcase_02 AC 82 ms
12,288 KB
testcase_03 AC 490 ms
34,304 KB
testcase_04 AC 1,112 ms
55,040 KB
testcase_05 AC 1,101 ms
57,728 KB
testcase_06 AC 1,402 ms
64,000 KB
testcase_07 AC 1,186 ms
58,752 KB
testcase_08 AC 1,006 ms
55,680 KB
testcase_09 AC 821 ms
50,688 KB
testcase_10 AC 1,350 ms
62,592 KB
testcase_11 WA -
testcase_12 AC 993 ms
54,144 KB
testcase_13 AC 1,424 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