atcoder#NIKKEI20192QUALF. Mirror Frame
Mirror Frame
Score : points
Problem Statement
In a two-dimensional plane, there is a square frame whose vertices are at coordinates , , , and . The frame is made of mirror glass. A ray of light striking an edge of the frame (but not a vertex) will be reflected so that the angle of incidence is equal to the angle of reflection. A ray of light striking a vertex of the frame will be reflected in the direction opposite to the direction it is coming from.
We will define the path for a grid point (a point with integer coordinates) ($0) strictly within the frame, as follows:
- The path for is the union of the trajectories of four rays of light emitted from to , , , and .
Figure: an example of a path for a grid point
There is a light bulb at each grid point strictly within the frame. We will assign a state - ON or OFF - to each bulb. The state of the whole set of bulbs are called beautiful if it is possible to turn OFF all the bulbs by repeating the following operation:
- Choose a grid point strictly within the frame, and switch the states of all the bulbs on its path.
Takahashi has set the states of some of the bulbs, but not for the remaining bulbs.
Find the number of ways to set the states of the remaining bulbs so that the state of the whole set of bulbs is beautiful, modulo .
The state of the bulb at the grid point is set to be ON if o
, OFF if x
, and unset if ?
.
Constraints
- is
o
,x
, or?
.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
4
o?o
???
?x?
1
The state of the whole set of bulbs will be beautiful if we set the state of each bulb as follows:
oxo
xox
oxo
We can turn OFF all the bulbs by, for example, choosing the point and switching the states of the bulbs at , , , , and .
5
o?o?
????
o?x?
????
0
6
?o???
????o
??x??
o????
???o?
32
9
????o??x
?????x??
??o?o???
?o?x????
???????x
x?o?o???
????????
x?????x?
4