#1181
Unrated
NEO
시간 제한
0.9s
메모리 제한
32MB
제출
0
정답
0
맞힌 사람
0
정답 비율
0.0%

문제

0.9 seconds, 32 MB, 140 points Let us denote Ai,j as the element from matrix A located in the ith row and jth column. We say that the matrix A is cool if this holds:

  • r, s > 1

  • A1,1 + Ar,s ⩽A1,s + Ar,1

where r denotes the number of rows, and s the number of columns of matrix A. Additionally, we say that a matrix is extremely cool if each of its submatrices with at least two rows and two columns is cool. It is your task to determine the largest number of elements that are contained in an extremely cool submatrix of the given matrix.

입력

The first line of input contains two integers R, S (2 ⩽R, S ⩽1 000) which represent the dimensions of the matrix. Each of the following R lines contains S integers that represent the elements in the matrix. The elements in the matrix will be integers from the interval [−106, 106].

출력

The first and only line of output must contain the maximal number of elements that are contained in an extremely cool submatrix of the matrix from the input. If an extremely cool submatrix doesn’t exist, output 0.

예제 입력 1

3 3
1 4 10
5 2 6
11 1 3

예제 출력 1

9

예제 입력 2

3 3
1 3 1
2 1 2
1 1 1

예제 출력 2

4

예제 입력 3

5 6
1 1 4 0 3 3
4 4 9 7 11 13
-3 -1 4 2 8 11
1 5 9 5 9 10
4 8 10 5 8 8

예제 출력 3

15
코드 제출

코드를 제출하려면 로그인이 필요합니다.

로그인
내 제출
제출 내역이 없습니다.
맞은 사람
아직 맞은 사람이 없습니다.
난이도 투표
Unrated0명 투표
로그인 후 AC 받으면 투표할 수 있습니다.
전체 제출
제출 내역이 없습니다.