CF429B.Working out

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Summer is coming! It's time for Iahub and Iahubina to work out, as they both want to look hot at the beach. The gym where they go is a matrix aa with nn lines and mm columns. Let number a[i][j]a[i][j] represents the calories burned by performing workout at the cell of gym in the ii -th line and the jj -th column.

Iahub starts with workout located at line 11 and column 11 . He needs to finish with workout a[n][m]a[n][m] . After finishing workout a[i][j]a[i][j] , he can go to workout a[i+1][j]a[i+1][j] or a[i][j+1]a[i][j+1] . Similarly, Iahubina starts with workout a[n][1]a[n][1] and she needs to finish with workout a[1][m]a[1][m] . After finishing workout from cell a[i][j]a[i][j] , she goes to either a[i][j+1]a[i][j+1] or a[i1][j]a[i-1][j] .

There is one additional condition for their training. They have to meet in exactly one cell of gym. At that cell, none of them will work out. They will talk about fast exponentiation (pretty odd small talk) and then both of them will move to the next workout.

If a workout was done by either Iahub or Iahubina, it counts as total gain. Please plan a workout for Iahub and Iahubina such as total gain to be as big as possible. Note, that Iahub and Iahubina can perform workouts with different speed, so the number of cells that they use to reach meet cell may differs.

输入格式

The first line of the input contains two integers nn and mm ( 3<=n,m<=10003<=n,m<=1000 ). Each of the next nn lines contains mm integers: jj -th number from ii -th line denotes element a[i][j]a[i][j] ( 0<=a[i][j]<=1050<=a[i][j]<=10^{5} ).

输出格式

The output contains a single number — the maximum total gain possible.

输入输出样例

  • 输入#1

    3 3
    100 100 100
    100 1 100
    100 100 100
    

    输出#1

    800

说明/提示

Iahub will choose exercises a[1][1]a[1][2]a[2][2]a[3][2]a[3][3]a[1][1]→a[1][2]→a[2][2]→a[3][2]→a[3][3] . Iahubina will choose exercises a[3][1]a[2][1]a[2][2]a[2][3]a[1][3]a[3][1]→a[2][1]→a[2][2]→a[2][3]→a[1][3] .

首页