Water

Time Limit:1000ms Memory Limit:64000KiB
Accepted:0 Submitted:0
Water

POI VI Stage 3 Problem 6

Water

On a rectangular mesh comprising n*m fields, n*m cuboids were put, one cuboid on each field. A base of each cuboid covers one field and its surface equals to one square inch. Cuboids on adjacent fields adhere one to another so close that there are no gaps between them. A heavy rain pelted on a construction so that in some areas puddles of water appeared. 

Task

Write a program which: 

  • reads from the text file WOD.IN a size of the chessboard and heights of cuboids put on the fields,
  • computes maximal water volume, which may gather in puddles after the rain,
  • writes results in the text file WOD.OUT.

Input

In the first line of the input file WOD.IN two positive integers 1 <= n <= 100, 1 <= m <= 100 are written. They are the size of the mesh. In each of the following n lines there are m integers from the interval [1..10000]; i-th number in j-th line denotes a height of a cuboid given in inches put on the field in the i-th column and j-th raw of the chessboard.

Output

Your program should write in the first and the only line of the text file WOD.OUT one integer equal to the maximal volume of water (given in cubic inches), which may gather in puddles on the construction. 

Sample Input

3 6
3 3 4 4 4 2
3 1 3 2 1 4
7 3 1 6 4 1

Sample Output

5

A picture below shows the mesh after the rain (seen from above). Puddles are drawn in gray.

SubmitStatistics

SOJ is designed and developed by Wilbur Ding and Liang Sun. ©All Rights Reserved 2009-2012.