#P7884. Maximal submatrix
Maximal submatrix
Maximal submatrix
Problem Description
Given a matrix of n rows and m columns,find the largest area submatrix which is non decreasing on each column
Input
The first line contains an integer representing the number of test cases. For each test case, the first line contains two integers representing the size of the matrix the next n line followed. the i-th line contains integers representing the value of matrix It is guaranteed that there are no more than 2 testcases with
Output
For each test case, print a integer representing the Maximal submatrix
Sample Input
1
2 3
1 2 4
2 3 3
Sample Output
4
Source
2021“MINIEYE杯”中国大学生算法设计超级联赛(1)