시간 제한메모리 제한제출정답맞힌 사람정답 비율
0.1 초 512 MB80515063.291%

문제

Today is Jaime’s birthday and, to celebrate, his friends ordered a cake decorated with eggfruits and persimmons. When the cake arrived, to their surprise, they noticed that the bakery didn’t use equal amounts of eggfruits and persimmons, but just randomly distributed the fruits over the cake’s border instead.

Jaime eats persimmons every day, so he was eager to try some eggfruit on his birthday. However, as he doesn’t want to eat too much, his cake slice should be decorated with at most S fruits. Since Jaime doesn’t like when a fruit is cut into parts, each fruit should either be entirely in his slice or be left in the rest of the cake. The problem is, with the fruits distributed in such a chaotic order, his friends are having trouble cutting a suitable slice for him.

Jaime is about to complain that his friends are taking too long to cut his slice, but in order to do so, he needs to know how many different slices with at least one eggfruit and containing at most S fruits there are. A slice is defined just based on the set of fruits it contains. As Jaime is quite focused on details, he is able to distinguish any two fruits, even if both fruits are of the same type. Hence, two slices are considered different when they do not contain exactly the same set of fruits. The following picture shows a possible cake, as well as the six different slices with at most S = 2 fruits that can be cut from it.

입력

The first line contains a circular string B (3 ≤ |B| ≤ 105) describing the border of the cake. Each character of B is either the uppercase letter “E” or the uppercase letter “P”, indicating respectively that there’s an eggfruit or a persimmon at the border of the cake. The second line contains an integer S (1 ≤ S < |B|) representing the maximum number of fruits that a slice can contain.

출력

Output a single line with an integer indicating the number of different slices with at most S fruits and at least one eggfruit.

예제 입력 1

PEPEP
2

예제 출력 1

6

예제 입력 2

EPE
1

예제 출력 2

2

예제 입력 3

PPPP
1

예제 출력 3

0

예제 입력 4

EPEP
2

예제 출력 4

6

출처

ICPC > Regionals > Latin America > Latin America Regional Contests > Latin America Regional Contests 2019 E번

  • 문제를 만든 사람: Moroni Silverio