문제
Bessie the cow is trying to walk from her favorite pasture back to her barn.
The pasture and farm are on an grid (), with her pasture in the top-left corner and the barn in the bottom-right corner. Bessie wants to get home as soon as possible, so she will only walk down and to the right. There are haybales in some locations that Bessie cannot walk through; she must walk around them.
Bessie is feeling a little tired today, so she wants to change the direction she walks at most times () .
How many distinct paths can Bessie walk from her favorite pasture to the barn? Two paths are distinct if Bessie walks in a square in one path but not in the other.
입력
The input for each test case contains sub-test cases, each describing a different farm and each of which must be answered correctly to pass the full test case. The first line of input contains (). Each of the sub-test cases follow.
Each sub-test case starts with a line containing and .
The next lines each contain a string of characters. Each character is either if it is empty or if it has a haybale. It is guaranteed the top-left and bottom-right corners of the farm will not contain haybales.
출력
Output lines, the th line containing the number of distinct paths Bessie can take in the th sub-test case.
예제 입력 1
7
3 1
...
...
...
3 2
...
...
...
3 3
...
...
...
3 3
...
.H.
...
3 2
.HH
HHH
HH.
3 3
.H.
H..
...
4 3
...H
.H..
....
H...
예제 출력 1
2
4
6
2
0
0
6
점수
Test case 2 satisfies .Test cases 3-5 satisfy .Test cases 6-10 satisfy .
코드를 제출하려면 로그인이 필요합니다.
로그인