Brutality

题目描述

You are playing a new famous fighting game: Kortal Mombat XII. You have to perform a brutality on your opponent's character. You are playing the game on the new generation console so your gamepad have $ 26 $ buttons. Each button has a single lowercase Latin letter from 'a' to 'z' written on it. All the letters on buttons are pairwise distinct. You are given a sequence of hits, the $ i $ -th hit deals $ a_i $ units of damage to the opponent's character. To perform the $ i $ -th hit you have to press the button $ s_i $ on your gamepad. Hits are numbered from $ 1 $ to $ n $ . You know that if you press some button more than $ k $ times in a row then it'll break. You cherish your gamepad and don't want to break any of its buttons. To perform a brutality you have to land some of the hits of the given sequence. You are allowed to skip any of them, however changing the initial order of the sequence is prohibited. The total damage dealt is the sum of $ a_i $ over all $ i $ for the hits which weren't skipped. Note that if you skip the hit then the counter of consecutive presses the button won't reset. Your task is to skip some hits to deal the maximum possible total damage to the opponent's character and not break your gamepad buttons.

输入输出格式

输入格式


The first line of the input contains two integers $ n $ and $ k $ ( $ 1 \le k \le n \le 2 \cdot 10^5 $ ) — the number of hits and the maximum number of times you can push the same button in a row. The second line of the input contains $ n $ integers $ a_1, a_2, \dots, a_n $ ( $ 1 \le a_i \le 10^9 $ ), where $ a_i $ is the damage of the $ i $ -th hit. The third line of the input contains the string $ s $ consisting of exactly $ n $ lowercase Latin letters — the sequence of hits (each character is the letter on the button you need to press to perform the corresponding hit).

输出格式


Print one integer $ dmg $ — the maximum possible damage to the opponent's character you can deal without breaking your gamepad buttons.

输入输出样例

输入样例 #1

7 3
1 5 16 18 7 2 10
baaaaca

输出样例 #1

54

输入样例 #2

5 5
2 4 1 3 1000
aaaaa

输出样例 #2

1010

输入样例 #3

5 4
2 4 1 3 1000
aaaaa

输出样例 #3

1009

输入样例 #4

8 1
10 15 2 1 4 8 15 16
qqwweerr

输出样例 #4

41

输入样例 #5

6 3
14 18 9 19 2 15
cccccc

输出样例 #5

52

输入样例 #6

2 1
10 10
qq

输出样例 #6

10

说明

In the first example you can choose hits with numbers $ [1, 3, 4, 5, 6, 7] $ with the total damage $ 1 + 16 + 18 + 7 + 2 + 10 = 54 $ . In the second example you can choose all hits so the total damage is $ 2 + 4 + 1 + 3 + 1000 = 1010 $ . In the third example you can choose all hits expect the third one so the total damage is $ 2 + 4 + 3 + 1000 = 1009 $ . In the fourth example you can choose hits with numbers $ [2, 3, 6, 8] $ . Only this way you can reach the maximum total damage $ 15 + 2 + 8 + 16 = 41 $ . In the fifth example you can choose only hits with numbers $ [2, 4, 6] $ with the total damage $ 18 + 19 + 15 = 52 $ . In the sixth example you can change either first hit or the second hit (it does not matter) with the total damage $ 10 $ .