문제
Farmer John has a small field in the shape of an by grid () where the -th square from the left of the -th row from the top is denoted by for all . He is interested in planting sweet corn and alfalfa in his field. To do so, he needs to install some special sprinklers.
A sweet corn sprinkler in square will sprinkle all squares to the bottom-left: i.e. with and .
An alfalfa sprinkler in square will sprinkle all squares to the top-right: i.e. with and .
A square sprinkled by one or multiple sweet corn sprinklers can grow sweet corn; a square sprinkled by one or multiple alfalfa sprinklers can grow alfalfa. But a square sprinkled by both types of sprinklers (or neither type) can grow nothing.
Help FJ determine the number of ways (modulo ) to install sprinklers in his field, at most one per square, so that every square is fertile (i.e., sprinkled by exactly one type of sprinkler).
Some of the squares are already occupied by woolly cows; this doesn't prevent these squares from being fertile, but no sprinklers can be installed in such squares.
입력
The first line contains a single integer
For each the -st line contains a string of length denoting the -th row of the grid. Each character of the string is one of 'W' (indicating a square occupied by a woolly cow), or '.' (unoccupied).
출력
Output the remainder when the number of ways to install sprinklers is divided by
예제 입력 1
2
..
..
예제 출력 1
28
예제 입력 2
4
..W.
..WW
WW..
...W
예제 출력 2
2304
점수
Test cases 3-4 satisfy and there are at most ten unoccupied squares.Test cases 5-9 satisfy .Test cases 10-16 satisfy no additional constraints.
코드를 제출하려면 로그인이 필요합니다.
로그인