2830:Matrix Swapping II

题目描述
Given an N * M matrix with each entry equal to 0 or 1. We can find some rectangles in the matrix whose entries are all 1, and we define the maximum area of such rectangle as this matrix’s goodness.

We can swap any two columns any times, and we are to make the goodness of the matrix as large as possible.
输入解释
There are several test cases in the input. The first line of each test case contains two integers N and M (1 ≤ N,M ≤ 1000). Then N lines follow, each contains M numbers (0 or 1), indicating the N * M matrix
输出解释
Output one line for each test case, indicating the maximum possible goodness.
输入样例
3 4
1011
1001
0001
3 4
1010
1001
0001
输出样例
4
2

Note: Huge Input, scanf() is recommended.
来自杭电HDUOJ的附加信息
Recommend gaojie

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-2830

最后修改于 2020-10-25 22:57:18 UTC 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
9000/3000MS(Java/Others) 32768/32768K(Java/Others)

·

·

·

·

登陆或注册以提交代码