atcoder#ARC081D. [ARC081F] Flip and Rectangles

[ARC081F] Flip and Rectangles

Score : 700700 points

Problem Statement

We have a board with an H×WH \times W grid. Each square in the grid is painted in black or white. The square at the ii-th row from the top and jj-th column from the left is black if the jj-th character in SiS_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

  • 2H20002 \leq H \leq 2000
  • 2W20002 \leq W \leq 2000
  • Si=W|S_i| = W
  • SiS_i consists of # and ..

Input

Input is given from Standard Input in the following format:

HH WW

S1S_1

S2S_2

::

SHS_H

Output

Print the maximum possible area of Snuke's rectangle.

3 3
..#
##.
.#.
6

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

4 4
....
....
....
....
16
10 8
##...#.#
##...#.#
..###.#.
#.##.#.#
.#..#.#.
..##.#.#
##.#.#..
...#.#..
###.#.##
###..###
27