#5051. Problem 2. It's Mooin' Time

0

Problem 2. It's Mooin' Time

Problem 2. It's Mooin' Time

USACO 2024 December Contest, Platinum

Note: The time limit for this problem is 3s, 1.5x the default.

Bessie has a string of length NN (1N31051\le N\le 3\cdot 10^5) consisting solely of the characters M and O. For each position ii of the string, there is a cost cic_i to change the character at that position to the other character (1ci1081\le c_i\le 10^8).

Bessie thinks the string will look better if it contains more moos of length LL (1Lmin(N,3)1\le L\le \min(N, 3)). A moo of length LL is an M followed by L1L-1 Os.

For each positive integer kk from 11 to N/L\lfloor N/L\rfloor inclusive, compute the minimum cost to change the string to contain at least kk substrings equal to a moo of length LL.

INPUT FORMAT (input arrives from the terminal / stdin):

The first line contains LL and NN.

The next line contains Bessie's length-NN string, consisting solely of Ms and Os.

The next line contains space-separated integers c1cNc_1\dots c_N.

OUTPUT FORMAT (print output to the terminal / stdout):

Output N/L\lfloor N/L\rfloor lines, the answer for each kk in increasing order.

SAMPLE INPUT:


1 4
MOOO
10 20 30 40

SAMPLE OUTPUT:


0
20
50
90

SAMPLE INPUT:


3 4
OOOO
50 40 30 20

SAMPLE OUTPUT:


40

SAMPLE INPUT:


2 20
OOOMOMOOOMOOOMMMOMOO
44743602 39649528 94028117 50811780 97338107 30426846 94909807 22669835 78498782 18004278 16633124 24711234 90542888 88490759 12851185 74589289 54413775 21184626 97688928 10497142

SAMPLE OUTPUT:


0
0
0
0
0
12851185
35521020
60232254
99881782
952304708

SAMPLE INPUT:


3 20
OOOMOMOOOMOOOMMMOMOO
44743602 39649528 94028117 50811780 97338107 30426846 94909807 22669835 78498782 18004278 16633124 24711234 90542888 88490759 12851185 74589289 54413775 21184626 97688928 10497142

SAMPLE OUTPUT:


0
0
0
44743602
119332891
207066974

SCORING: Input 5: L=3,N5000L=3, N\le 5000Input 6: L=1L=1Inputs 7-10: L=2L=2Inputs 11-18: L=3L=3

Problem credits: Benjamin Qi