100 atcoder#ABC129D. [ABC129D] Lamp

[ABC129D] Lamp

Score : 400400 points

Problem Statement

There is a grid with HH horizontal rows and WW vertical columns, and there are obstacles on some of the squares.

Snuke is going to choose one of the squares not occupied by an obstacle and place a lamp on it. The lamp placed on the square will emit straight beams of light in four cardinal directions: up, down, left, and right. In each direction, the beam will continue traveling until it hits a square occupied by an obstacle or it hits the border of the grid. It will light all the squares on the way, including the square on which the lamp is placed, but not the square occupied by an obstacle.

Snuke wants to maximize the number of squares lighted by the lamp.

You are given HH strings SiS_i (1iH1 \leq i \leq H), each of length WW. If the jj-th character (1jW1 \leq j \leq W) of SiS_i is #, there is an obstacle on the square at the ii-th row from the top and the jj-th column from the left; if that character is ., there is no obstacle on that square.

Find the maximum possible number of squares lighted by the lamp.

Constraints

  • 1H2,0001 \leq H \leq 2,000
  • 1W2,0001 \leq W \leq 2,000
  • SiS_i is a string of length WW consisting of # and ..
  • . occurs at least once in one of the strings SiS_i (1iH1 \leq i \leq H).

Input

Input is given from Standard Input in the following format:

HH WW

S1S_1

::

SHS_H

Output

Print the maximum possible number of squares lighted by the lamp.

4 6
#..#..
.....#
....#.
#.#...
8

If Snuke places the lamp on the square at the second row from the top and the second column from the left, it will light the following squares: the first through fifth squares from the left in the second row, and the first through fourth squares from the top in the second column, for a total of eight squares.

8 8
..#...#.
....#...
##......
..###..#
...#..#.
##....#.
#...#...
###.#..#
13