3875: CF173 - C. Spiral Maximum
[Creator : ]
Description
Let's consider a $k\times k$ square, divided into unit squares. Please note that $k≥3$ and is odd. We'll paint squares starting from the upper left square in the following order: first we move to the right, then down, then to the left, then up, then to the right again and so on. We finish moving in some direction in one of two cases: either we've reached the square's border or the square following after the next square is already painted. We finish painting at the moment when we cannot move in any direction and paint a square. The figure that consists of the painted squares is aspiral.
The figure shows examples of spirals for $k=3,5,7,9$.
You have an $n\times m$ table, each of its cells contains a number. Let's consider all possible spirals, formed by the table cells. It means that we consider all spirals of any size that don't go beyond the borders of the table. Let's find the sum of the numbers of the cells that form the spiral. You have to find the maximum of those values among all spirals.
Input
The first line contains two integers $n,m\ (3≤n,m≤500)$ − the sizes of the table.
Each of the next $n$ lines contains $m$ space-separated integers: the $j$-th number in the $i$-th line $a_{ij}\ (-1000≤a_{ij}≤1000)$ is the number recorded in the $j$-th cell of the $i$-th row of the table.
Output
Print a single number − the maximum sum of numbers among all spirals.
Sample 1 Input
6 5
0 0 0 0 0
1 1 1 1 1
0 0 0 0 1
1 1 1 0 1
1 0 0 0 1
1 1 1 1 1
Sample 1 Output
17
the spiral with maximum sum will cover all 1's of the table.
Sample 2 Input
3 3
1 1 1
1 0 0
1 1 1
Sample 2 Output
6
the spiral may cover only six 1's.
Sample 3 Input
6 6
-3 2 0 1 5 -1
4 -1 2 -3 0 1
-5 1 2 4 1 -2
0 -2 1 3 -1 2
3 1 4 -3 -2 0
-1 2 -1 3 1 2
Sample 3 Output
13
HINT
相同题目:CF173C。