CF173C.Spiral Maximum

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Let's consider a k×kk×k square, divided into unit squares. Please note that k>=3k>=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.

The figure shows examples of spirals for k=3,5,7,9k=3,5,7,9 . You have an n×mn×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 nn and mm ( 3<=n,m<=5003<=n,m<=500 ) — the sizes of the table.

Each of the next nn lines contains mm space-separated integers: the jj -th number in the ii -th line aija_{ij} ( 1000<=aij<=1000-1000<=a_{ij}<=1000 ) is the number recorded in the jj -th cell of the ii -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.

首页