200813: [AtCoder]ARC081 F - Flip and Rectangles

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $700$ points

Problem Statement

We have a board with an $H \times W$ grid. Each square in the grid is painted in black or white. The square at the $i$-th row from the top and $j$-th column from the left is black if the $j$-th character in $S_i$ is #, and white if that character is ..

Snuke can perform the following operation on the grid any number of times:

  • Select a row or column in the grid, and invert the color of all the squares in that row or column (that is, black squares become white and vice versa).

Then, Snuke draws a rectangle along grid lines. Here, all the squares contained in the rectangle must be painted in black.

Find the maximum possible area of Snuke's rectangle when the operation is performed optimally.

Constraints

  • $2 \leq H \leq 2000$
  • $2 \leq W \leq 2000$
  • $|S_i| = W$
  • $S_i$ consists of # and ..

Input

Input is given from Standard Input in the following format:

$H$ $W$
$S_1$
$S_2$
$:$
$S_H$

Output

Print the maximum possible area of Snuke's rectangle.


Sample Input 1

3 3
..#
##.
.#.

Sample Output 1

6

If the first row from the top and the third column from the left are inverted, a $2 \times 3$ rectangle can be drawn, as shown below:


Sample Input 2

4 4
....
....
....
....

Sample Output 2

16

Sample Input 3

10 8
##...#.#
##...#.#
..###.#.
#.##.#.#
.#..#.#.
..##.#.#
##.#.#..
...#.#..
###.#.##
###..###

Sample Output 3

27

Input

题意翻译

给出一个拥有 $H\times W$ 个格子的棋盘,每个格子的颜色为黑色或白色。 Snuke 可以进行任意次下列操作: - 选择棋盘中的一行或一列,将这一行或一列的颜色翻转(黑变成白,白变成黑) Snuke 想知道,在他进行操作后,棋盘中最大的全黑矩形最大能为多少。

加入题单

算法标签: