시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 1024 MB15111173.333%

문제

Bob is decorating a loft-style rectangular wall with bricks. The wall consists of $n \times m$ unit cells. Some cells are already occupied by bricks, while the remaining cells are empty.

Bob wants to add up to two more bricks to this wall. New bricks must have a width equal to $1$ unit and can have any positive integer length. Each brick can only be placed horizontally or vertically, so each new brick will occupy several consecutive empty cells in one row or in one column. Also, these two bricks must not intersect, i.e. occupy the same cell.

What is the maximum possible sum of lengths of at most two new bricks that Bob can add to this wall?

입력

Each test contains multiple test cases. The first line contains the number of test cases $t$ ($1 \le t \le 10^4$). The description of the test cases follows.

The first line of each test case contains two integers $n$ and $m$ --- the height and the width of the wall ($1 \le n, m$; $n \cdot m \le 10^6$).

The next $n$ lines contain $m$ characters each, describing the wall. An occupied cell is denoted by '\#', an empty cell is denoted by '.'.

It is guaranteed that the sum of $n \cdot m$ over all test cases does not exceed $10^6$.

출력

For each test case, print a single integer --- the maximum possible sum of lengths of at most two new bricks.

예제 입력 1

5
2 2
..
..
4 5
###.#
#....
.##.#
#.#.#
2 1
.
.
2 3
###
#.#
5 4
##.#
..#.
#.#.
....
#.##

예제 출력 1

4
6
2
1
7