atcoder#AGC033E. [AGC033E] Go around a Circle
[AGC033E] Go around a Circle
Score : points
Problem Statement
Consider a circle whose perimeter is divided by points into arcs of equal length, and each of the arcs is painted red or blue. Such a circle is said to generate a string S from every point when the following condition is satisfied:
- We will arbitrarily choose one of the points on the perimeter and place a piece on it.
- Then, we will perform the following move times: move the piece clockwise or counter-clockwise to an adjacent point.
- Here, whatever point we choose initially, it is always possible to move the piece so that the color of the -th arc the piece goes along is , by properly deciding the directions of the moves.
Assume that, if is R
, it represents red; if is B
, it represents blue.
Note that the directions of the moves can be decided separately for each choice of the initial point.
You are given a string of length consisting of R
and B
.
Out of the ways to paint each of the arcs red or blue in a circle whose perimeter is divided into arcs of equal length, find the number of ways resulting in a circle that generates from every point, modulo .
Note that the rotations of the same coloring are also distinguished.
Constraints
- is
R
orB
.
Input
Input is given from Standard Input in the following format:
Output
Print the number of ways to paint each of the arcs that satisfy the condition, modulo .
4 7
RBRRBRR
2
The condition is satisfied only if the arcs are alternately painted red and blue, so the answer here is .
3 3
BBB
4
12 10
RRRRBRRRRB
78