시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 (추가 시간 없음) 1024 MB101010100.000%

문제

Central City is best known for its famous Statue Park.  The park is laid out as a grid, with each grid square housing either a statue or some park water feature (see Figure L.1a).  The statues come in all shapes and sizes and therein lies the problem, as some of the statues are so large that they obscure the view of others from the main paths surrounding the park --- roads N, E, S and W.  The Park Statue Keeper is Milo D. Venus and he wants to move some of the statues so that visitors on two of these paths can see all of the statues.  He realizes that one way to do this is to pick a corner of the park and then start placing the statues along the diagonals of the grid in order of the diagonals' distance from the selected corner, skipping over any water feature squares. The smallest statue would be placed in the first diagonal (assuming there is no water feature there).  The next smallest statues will be placed in the second diagonal (this could be $0$, $1$ or $2$ statues depending on the number of water feature squares in the diagonal).  The next smallest statues are placed in the third diagonal, and so on. With this scheme though there are a lot of choices to make.  For example, if you wanted the best viewing to be along roads N and W, you would use the diagonals in Figure L.1b placing the smallest statue in diagonal $a$, the next smallest in diagonal $b$, the next three smallest in diagonal $c$, the next two smallest in diagonal $d$, and so on.  If you wanted the best viewing to be along roads W and S you would use the diagonals in Figure L.1c placing the smallest statue in diagonal $a$, the next two smallest in diagonal $b$, the next three smallest in diagonal $c$, the next smallest in diagonal $d$, and so on.  Within any diagonal which can fit more than two statues the placement of those statues can be in any order, leading to even more choices.

Figure L.1: Statue Park.  Figures (b) and (c) show two possible placements of the diagonals

Given all this flexibility it seems natural to pick the scheme that minimizes the number of statues that need to be moved, but which scheme is best is not immediately clear.  Now Milo is a very competent administrator and very charming (he's downright disarming) but he's not all that great in solving problems like this.  Can you carve out some time to help him?

입력

Input begins with two positive integers $n$ $m$ ($n,m \leq 50$) specifying the number of rows and columns in the park grid.  After this are $n$ rows each containing $m$ integers.  The $j^{\text{th}}$ value in the $i^{\text{th}}$ row indicates what is located in row $i$, column $j$ in the park grid.  If this value is positive it indicates a statue of that height; if it is $-1$ it indicates a water feature.  No two statues will have the same height.

출력

Output the minimum number of statues that need to be moved among all the various ways they can be placed with the scheme described above.

예제 입력 1

3 4
2 -1 9 6
10 8 -1 4
1 3 5 7

예제 출력 1

5

예제 입력 2

3 4
30 -1 24 18
28 22 -1 16
26 20 14 12

예제 출력 2

0