atcoder#JSC2019QUALC. Cell Inversion
Cell Inversion
Score : points
Problem Statement
There are squares arranged from left to right. You are given a string of length representing the color of each of the squares.
The color of the -th square from the left is black if the -th character of is B
, and white if that character is W
.
You will perform the following operation exactly times: choose two distinct squares, then invert the colors of these squares and the squares between them. Here, to invert the color of a square is to make it white if it is black, and vice versa.
Throughout this process, you cannot choose the same square twice or more. That is, each square has to be chosen exactly once.
Find the number of ways to make all the squares white at the end of the process, modulo .
Two ways to make the squares white are considered different if and only if there exists such that the pair of the squares chosen in the -th operation is different.
Constraints
- Each character of is
B
orW
.
Input
Input is given from Standard Input in the following format:
Output
Print the number of ways to make all the squares white at the end of the process, modulo . If there are no such ways, print .
2
BWWB
4
There are four ways to make all the squares white, as follows:
- Choose Squares in the first operation, and choose Squares in the second operation.
- Choose Squares in the first operation, and choose Squares in the second operation.
- Choose Squares in the first operation, and choose Squares in the second operation.
- Choose Squares in the first operation, and choose Squares in the second operation.
4
BWBBWWWB
288
5
WWWWWWWWWW
0