CF67A.Partial Teacher

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A teacher decides to give toffees to his students. He asks nn 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.

输入格式

The first line of input contains the number of students nn ( 2<=n<=10002<=n<=1000 ). The second line gives ( n1n-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 consists of nn 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.

输入输出样例

  • 输入#1

    5
    LRLR
    

    输出#1

    2 1 2 1 2
    
  • 输入#2

    5
    =RRR
    

    输出#2

    1 1 2 3 4
    
首页