Hide

Problem A
Tired Terry

Terry is feeling tired and he suspects it is because of a lack of sleep. He created a device that records his sleeping pattern over a period of time measured in seconds.

Assuming that the recorded sleeping pattern keeps repeating, help Terry by letting him know how often he is tired during each of the repeating time periods.

More precisely, for integers p and d, we say that Terry is tired at second i if from second ip+1 to second i (inclusive) he has slept for less than d seconds.

Input

The first line of input contains three integers n (1n86400), the length of Terry’s sleep pattern, p (1pn), and d (1dp) as described above.

The second line of input contains a single string of length n which describes the period of time that is recorded. The ith such character is a W if Terry is awake at the ith second, or is a Z if Terry is asleep at the ith second.

Output

Display a single integer which represents the number of seconds that Terry is tired during each of the repeating time periods.

Sample Input 1 Sample Output 1
2 1 1
WZ
1
Sample Input 2 Sample Output 2
5 3 2
WZWWZ
4
Hide

Please log in to submit a solution to this problem

Log in