PivotOJ

Milk Exchange

시간 제한: 2000ms메모리 제한: 1024MB출처: USACO 2024 February BronzeBOJ 31649

문제

Farmer John's NN (1N2105)(1 \leq N \leq 2 \cdot 10^5) cows are lined up in a circle such that for each ii in 1,2,,N11,2,\dots,N-1, the cow to the right of cow ii is cow i+1i+1, and the cow to the right of cow NN is cow 11. The iith cow has a bucket with integer capacity aia_i (1ai109)(1 \leq a_i \leq 10^9) liters. All buckets are initially full.

Every minute, the cows exchange milk according to a string s1s2sNs_1s_2\dots s_N consisting solely of the characters \text{‘L’} and \text{‘R’}. if the iith cow has at least 11 liter of milk, she will pass 11 liter of milk to the cow to her left if s_i=\text{‘L’}, or to the right if s_i=\text{‘R’}. All exchanges happen simultaneously (i.e., if a cow has a full bucket but gives away a liter of milk but also receives a liter, her milk is preserved). If a cow's total milk ever ends up exceeding aia_i, then the excess milk will be lost.

FJ wants to know: after MM minutes (1M109(1 \leq M \leq 10^9), what is the total amount of milk left among all cows?

입력

The first line contains NN and MM.

The second line contains a string s1s2sNs_1s_2\dots s_N consisting solely of the characters \text{‘L’} or \text{‘R’}, denoting the direction each cow will pass their milk in.

The third line contains integers a1,a2,,aNa_1, a_2, \dots, a_N, the capacities of each bucket.

출력

Output an integer, the sum of milk among all cows after MM minutes.

Note that the large size of integers involved in this problem may require the use of 64-bit integer data types (e.g., a "long long" in C/C++).

예제

예제 1

입력
3 1
RRL
1 1 1
출력
2

예제 2

입력
5 20
LLLLL
3 3 2 3 3
출력
14

예제 3

입력
9 5
RRRLRRLLR
5 8 4 9 3 4 9 5 4
출력
38
코드를 제출하려면 로그인하세요.