fork download
  1. def f(map1,cs,x,y,w,h)
  2. h2=map1[y][x]
  3. c2=cs[y][x]
  4. c2=h2 if c2==0
  5. c1=0
  6. [[0,1],[-1,0],[0,-1],[1,0]].each{|dy,dx|
  7. x2=x+dx
  8. y2=y+dy
  9. next if x2<0 || w<=x2 || y2<0 || h<=y2
  10. next if map1[y2][x2]<map1[y][x]
  11. c1+=1
  12. if cs[y2][x2]==0 then
  13. cs[y2][x2]=c2
  14. elsif 0<cs[y2][x2] && cs[y2][x2]!=cs[y][x]
  15. cs[y2][x2]=10**18
  16. end
  17. }
  18. if c1>0 then
  19. cs[y][x]=c2
  20. end
  21. end
  22. h,w=gets.split(" ").map{|e| e.to_i}
  23. map1=[]
  24. cs=[]
  25. hs=[]
  26.  
  27. h.times{|y|
  28. map1<<gets.split(" ").map{|e| e.to_i}
  29. cs<<[]
  30. w.times{|x|
  31. t=map1[y][x]
  32. hs<<[t,y,x]
  33. cs[y]<<0
  34. }
  35. }
  36. hs.sort!
  37. hs.each{|t,y,x|
  38.  
  39. f(map1,cs,x,y,w,h)
  40. }
  41. ans=0
  42. h.times{|y|
  43. w.times{|x|
  44. ans+=1 if cs[y][x]==10**18
  45. }
  46. }
  47. puts ans
Success #stdin #stdout 0.02s 8088KB
stdin
3 3
2 9 4
7 5 3
6 1 8
stdout
4