#D12933. Flip and Rectangles
Flip and Rectangles
Flip and Rectangles
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.
Examples
Input
3 3 ..# ##. .#.
Output
6
Input
3 3 ..# . .#.
Output
6
Input
4 4 .... .... .... ....
Output
16
Input
10 8 ...#.# ...#.# ..###.#. .##.#.# .#..#.#. ..##.#.# .#.#.. ...#.#.. .#.## ..###
Output
27
inputFormat
Input
Input is given from Standard Input in the following format:
H W S_1 S_2 : S_H
outputFormat
Output
Print the maximum possible area of Snuke's rectangle.
Examples
Input
3 3 ..# ##. .#.
Output
6
Input
3 3 ..# . .#.
Output
6
Input
4 4 .... .... .... ....
Output
16
Input
10 8 ...#.# ...#.# ..###.#. .##.#.# .#..#.#. ..##.#.# .#.#.. ...#.#.. .#.## ..###
Output
27
样例
3 3
..#
.
.#.
6