#arc089d. [arc089_d]ColoringBalls

[arc089_d]ColoringBalls

Problem Statement

There are NN white balls arranged in a row, numbered 1,2,..,N1,2,..,N from left to right. AtCoDeer the deer is thinking of painting some of these balls red and blue, while leaving some of them white.

You are given a string ss of length KK. AtCoDeer performs the following operation for each ii from 11 through KK in order:

  • The ii-th operation: Choose a contiguous segment of balls (possibly empty), and paint these balls red if the ii-th character in ss is r; paint them blue if the character is b.

Here, if a ball which is already painted is again painted, the color of the ball will be overwritten. However, due to the properties of dyes, it is not possible to paint a white, unpainted ball directly in blue. That is, when the ii-th character in ss is b, the chosen segment must not contain a white ball.

After all the operations, how many different sequences of colors of the balls are possible? Since the count can be large, find it modulo 109+710^9+7.

Constraints

  • 11 NN 7070
  • 11 KK 7070
  • s|s| \= KK
  • ss consists of r and b.
  • NN and KK are integers.

Input

Input is given from Standard Input in the following format:

NN KK ss

Output

Print the number of the different possible sequences of colors of the balls after all the operations, modulo 109+710^9+7.


Sample Input 1

2 2
rb

Sample Output 1

9

There are nine possible sequences of colors of the balls, as follows:

ww, wr, rw, rr, wb, bw, bb, rb, br.

Here, r represents red, b represents blue and wrepresents white.


Sample Input 2

5 2
br

Sample Output 2

16

Since we cannot directly paint white balls in blue, we can only choose an empty segment in the first operation.


Sample Input 3

7 4
rbrb

Sample Output 3

1569

Sample Input 4

70 70
bbrbrrbbrrbbbbrbbrbrrbbrrbbrbrrbrbrbbbbrbbrbrrbbrrbbbbrbbrbrrbbrrbbbbr

Sample Output 4

841634130