#Lutece0386. Largest Submatrix of All 1’s

Largest Submatrix of All 1’s

Migrated from Lutece 386 Largest Submatrix of All 1’s

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Given a mm-by-nn (0,1)(0,1)-matrix, of all its submatrixes of all 11’s which is the largest? By largest we mean that the submatrix has the most elements.

Input

The input contains multiple test cases. Each test case begins with mm and nn (1m,n20001\leq m, n\leq 2000) on line. Then come the elements of a (0,1)(0,1)-matrix in row-major order on mm lines each with nn numbers. The input ends once EOF is met.

Output

For each test case, output one line containing the number of elements of the largest submatrix of all 11’s. If the given matrix is of all 00’s, output 00.

Samples

2 2
0 0
0 0
4 4
0 0 0 0
0 1 1 0
0 1 1 0
0 0 0 0
0
4

Note

The data used in this problem is unofficial data prepared by pfctgeorge. So any mistake here does not imply mistake in the offcial judge data.

Resources

POJ Founder Monthly Contest – 2008.01.31