#554
Silver III
Walking Home
시간 제한
2s
메모리 제한
1024MB
제출
0
정답
0
맞힌 사람
0
정답 비율
0.0%

문제

Bessie the cow is trying to walk from her favorite pasture back to her barn.

The pasture and farm are on an N×NN \times N grid (2N502 \leq N \leq 50), 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 KK times (1K31 \leq K \leq 3) .

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 TT 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 TT (1T501 \leq T \leq 50). Each of the TT sub-test cases follow.

Each sub-test case starts with a line containing NN and KK.

The next NN lines each contain a string of NN characters. Each character is either .\texttt{.} if it is empty or H\texttt{H} if it has a haybale. It is guaranteed the top-left and bottom-right corners of the farm will not contain haybales.

출력

Output TT lines, the iith line containing the number of distinct paths Bessie can take in the iith 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 K=1K = 1.Test cases 3-5 satisfy K=2K = 2.Test cases 6-10 satisfy K=3K = 3.

코드 제출

코드를 제출하려면 로그인이 필요합니다.

로그인
내 제출
제출 내역이 없습니다.
맞은 사람
아직 맞은 사람이 없습니다.
난이도 투표
Silver III1명 투표· 약 1개월 전
로그인 후 AC 받으면 투표할 수 있습니다.
전체 제출
제출 내역이 없습니다.