#673
Silver II
Milk Exchange
시간 제한
2s
메모리 제한
1024MB
제출
0
정답
0
맞힌 사람
0
정답 비율
0.0%

문제

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 ‘L’\text{‘L’} and ‘R’\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 si=‘L’s_i=\text{‘L’}, or to the right if si=‘R’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 ‘L’\text{‘L’} or ‘R’\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

예제 출력 1

2

예제 입력 2

5 20
LLLLL
3 3 2 3 3

예제 출력 2

14

예제 입력 3

9 5
RRRLRRLLR
5 8 4 9 3 4 9 5 4

예제 출력 3

38

점수

Inputs 4-8: N,M1000N,M \le 1000Inputs 9-16: No additional constraints.

코드 제출

코드를 제출하려면 로그인이 필요합니다.

로그인
내 제출
제출 내역이 없습니다.
맞은 사람
아직 맞은 사람이 없습니다.
난이도 투표
Silver II1명 투표· 약 1개월 전
로그인 후 AC 받으면 투표할 수 있습니다.
전체 제출
제출 내역이 없습니다.