#agc033e. [agc033_e]Go around a Circle

[agc033_e]Go around a Circle

Problem Statement

Consider a circle whose perimeter is divided by NN points into NN arcs of equal length, and each of the arcs is painted red or blue. Such a circle is said to generate a string SS from every point when the following condition is satisfied:

  • We will arbitrarily choose one of the NN points on the perimeter and place a piece on it.
  • Then, we will perform the following move MM 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 ii-th arc the piece goes along is SiS_i, by properly deciding the directions of the moves.

Assume that, if SiS_i is R, it represents red; if SiS_i 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 SS of length MM consisting of R and B. Out of the 2N2^N ways to paint each of the arcs red or blue in a circle whose perimeter is divided into NN arcs of equal length, find the number of ways resulting in a circle that generates SS from every point, modulo 109+710^9+7.

Note that the rotations of the same coloring are also distinguished.

Constraints

  • 2leqNleq2times1052 \\leq N \\leq 2 \\times 10^5
  • 1leqMleq2times1051 \\leq M \\leq 2 \\times 10^5
  • S=M|S|=M
  • SiS_i is R or B.

Input

Input is given from Standard Input in the following format:

NN MM SS

Output

Print the number of ways to paint each of the arcs that satisfy the condition, modulo 109+710^9+7.


Sample Input 1

4 7
RBRRBRR

Sample Output 1

2

The condition is satisfied only if the arcs are alternately painted red and blue, so the answer here is 22.


Sample Input 2

3 3
BBB

Sample Output 2

4

Sample Input 3

12 10
RRRRBRRRRB

Sample Output 3

78