#ABC149D. [ABC149D] Prediction and Restriction

[ABC149D] Prediction and Restriction

Score : 400400 points

Problem Statement

At an arcade, Takahashi is playing a game called RPS Battle, which is played as follows:

  • The player plays NN rounds of Rock Paper Scissors against the machine. (See Notes for the description of Rock Paper Scissors. A draw also counts as a round.)
  • Each time the player wins a round, depending on which hand he/she uses, he/she earns the following score (no points for a draw or a loss):- RR points for winning with Rock;
    • SS points for winning with Scissors;
    • PP points for winning with Paper.
  • However, in the ii-th round, the player cannot use the hand he/she used in the (iK)(i-K)-th round. (In the first KK rounds, the player can use any hand.)

Before the start of the game, the machine decides the hand it will play in each round. With supernatural power, Takahashi managed to read all of those hands.

The information Takahashi obtained is given as a string TT. If the ii-th character of TT (1iN)(1 \leq i \leq N) is r, the machine will play Rock in the ii-th round. Similarly, p and s stand for Paper and Scissors, respectively.

What is the maximum total score earned in the game by adequately choosing the hand to play in each round?

Notes

In this problem, Rock Paper Scissors can be thought of as a two-player game, in which each player simultaneously forms Rock, Paper, or Scissors with a hand.

  • If a player chooses Rock and the other chooses Scissors, the player choosing Rock wins;
  • if a player chooses Scissors and the other chooses Paper, the player choosing Scissors wins;
  • if a player chooses Paper and the other chooses Rock, the player choosing Paper wins;
  • if both players play the same hand, it is a draw.

Constraints

  • 2N1052 \leq N \leq 10^5
  • 1KN11 \leq K \leq N-1
  • 1R,S,P1041 \leq R,S,P \leq 10^4
  • N,K,R,S,N,K,R,S, and PP are all integers.
  • T=N|T| = N
  • TT consists of r, p, and s.

Input

Input is given from Standard Input in the following format:

NN KK

RR SS PP

TT

Output

Print the maximum total score earned in the game.

5 2
8 7 6
rsrpr
27

The machine will play {Rock, Scissors, Rock, Paper, Rock}.

We can, for example, play {Paper, Rock, Rock, Scissors, Paper} against it to earn 2727 points. We cannot earn more points, so the answer is 2727.

7 1
100 10 1
ssssppr
211
30 5
325 234 123
rspsspspsrpspsppprpsprpssprpsr
4996