Preparando MOJI

Partial Teacher

1000ms 262144K

Description:

A teacher decides to give toffees to his students. He asks n students to stand in a queue. Since the teacher is very partial, he follows the following rule to distribute toffees.

He looks at the first two students and gives more toffees to the student having higher marks than the other one. If they have the same marks they get the same number of toffees. The same procedure is followed for each pair of adjacent students starting from the first one to the last one.

It is given that each student receives at least one toffee. You have to find the number of toffees given to each student by the teacher such that the total number of toffees is minimum.

Input:

The first line of input contains the number of students n (2 ≤ n ≤ 1000). The second line gives (n - 1) characters consisting of "L", "R" and "=". For each pair of adjacent students "L" means that the left student has higher marks, "R" means that the right student has higher marks and "=" means that both have equal marks.

Output:

Output consists of n integers separated by a space representing the number of toffees each student receives in the queue starting from the first one to the last one.

Sample Input:

5
LRLR

Sample Output:

2 1 2 1 2

Sample Input:

5
=RRR

Sample Output:

1 1 2 3 4

Informação

Codeforces

Provedor Codeforces

Código CF67A

Tags

dpgraphsgreedyimplementation

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:30:06

Relacionados

Nada ainda