페이지가 로드되지 않나요? 여기를 눌러보면 고쳐질 수도 있어요.
Placeholder

#5770

Routing Schemes 1초 512MB

문제

Consider a network of N (2≤N≤100) nodes labeled 1…N. Each node is designated as a sender, a receiver, or neither. The number of senders, S, is equal to the number of receivers (S≥1).

The connections between the nodes in this network can be described by a list of directed edges each of the form i→j, meaning that node i may route to node j. Interestingly, all of these edges satisfy the property that i<j, aside from K that satisfy i>j(0≤K≤2). There are no self-loops (edges of the form i→i ).

The description of a "routing scheme" consists of a set of S directed paths from senders to receivers such that no two of these paths share an endpoint. That is, the paths connect distinct senders to distinct receivers. A path from a sender s

to a receiver r can be described as a sequence of nodes

s=v_0→v_1→v_2→⋯→v_e=r

such that the directed edges v_i→v_i+1 exist for all 0≤i<e . A node may appear more than once within the same path.

Count the number of distinct routing schemes such that every directed edge is traversed exactly once. Since the answer may be very large, report it modulo 10^9+7. It is guaranteed that there is at least one routing scheme satisfying these constraints.

Each input contains T(1≤T≤20) test cases that should be solved independently. It is guaranteed that the sum of N^2

over all test cases does not exceed 2⋅10^4.


입력

The first line of the input contains T, the number of test cases.

The first line of each test case contains the integers N and K. Note that S is not explicitly given within the input.

The second line of each test case contains a string of length N. The i-th character of the string is equal to S if the i-th node is a sender, R if the i-th node is a receiver, or . if the i-th node is neither. The number of Rs in this string is equal to the number of Ss, and there is at least one S.

The next N lines of each test case each contain a bit string of N zeros and ones. The j-th bit of the i-th line is equal to 1 if there exists a directed edge from node i to node j, and 0 otherwise. As there are no self-loops, the main diagonal of the matrix consists solely of zeros. Furthermore, there are exactly K ones below the main diagonal.

Consecutive test cases are separated by newlines for readability.


출력

For each test case, the number of routing schemes such that every edge is traversed exactly once, modulo 10^9+7. It is guaranteed that there is at least one valid routing scheme for each test case


예제1

입력
2

8 0
SS....RR
00100000
00100000
00011000
00000100
00000100
00000011
00000000
00000000

13 0
SSS.RRRSS.RR.
0001000000000
0001000000000
0001000000000
0000111000000
0000000000000
0000000000000
0000000000000
0000000001000
0000000001000
0000000000110
0000000000000
0000000000000
0000000000000
출력
4
12

예제2

For the first test case, the edges are 1→3,1→5,2→3,3→1,3→4

There are three possible routing schemes:

1→3→1→5, 2→3→4

1→3→4, 2→3→1→5

1→5, 2→3→1→3→4

For the second test case, the edges are 1→3,2→4,3→2,3→6,4→5,5→3

.

There is only one possible routing scheme: 1→3→2→4→5→3→6

.


예제3

입력
5

3 2
RS.
010
101
100

4 2
.R.S
0100
0010
1000
0100

4 2
.SR.
0000
0011
0100
0010

5 2
.SSRR
01000
10101
01010
00000
00000

6 2
SS..RR
001010
000010
000010
000010
100101
000000
출력
2
1
2
6
24

Some additional small test cases.


출처

USACO 2021 US Open Platinum

역링크 공식 문제집만