300906: CF173C. Spiral Maximum

Memory Limit:256 MB Time Limit:3 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Spiral Maximum

题目描述

Let's consider a $ k×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 a spiral. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF173C/9bdc9b1befc556927df1bc6bdf8e832b185f9b78.png) The figure shows examples of spirals for $ k=3,5,7,9 $ . You have an $ n×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.

输入输出格式

输入格式


The first line contains two integers $ n $ and $ 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.

输出格式


Print a single number — the maximum sum of numbers among all spirals.

输入输出样例

输入样例 #1

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

输出样例 #1

17

输入样例 #2

3 3
1 1 1
1 0 0
1 1 1

输出样例 #2

6

输入样例 #3

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

输出样例 #3

13

说明

In the first sample the spiral with maximum sum will cover all 1's of the table. In the second sample the spiral may cover only six 1's.

Input

加入题单

算法标签: