100 atcoder#ABC136D. [ABC136D] Gathering Children
[ABC136D] Gathering Children
Score : points
Problem Statement
Given is a string consisting of L
and R
.
Let be the length of . There are squares arranged from left to right, and the -th character of from the left is written on the -th square from the left.
The character written on the leftmost square is always R
, and the character written on the rightmost square is always L
.
Initially, one child is standing on each square.
Each child will perform the move below times:
- Move one square in the direction specified by the character written in the square on which the child is standing.
L
denotes left, andR
denotes right.
Find the number of children standing on each square after the children performed the moves.
Constraints
- is a string of length between and (inclusive).
- Each character of is
L
orR
. - The first and last characters of are
R
andL
, respectively.
Input
Input is given from Standard Input in the following format:
Output
Print the number of children standing on each square after the children performed the moves, in order from left to right.
RRLRL
0 1 2 1 1
- After each child performed one move, the number of children standing on each square is from left to right.
- After each child performed two moves, the number of children standing on each square is from left to right.
- After each child performed moves, the number of children standing on each square is from left to right.
RRLLLLRLRRLL
0 3 3 0 0 0 1 1 0 2 2 0
RRRLLRLLRRRLLLLL
0 0 3 2 0 2 1 0 0 0 4 4 0 0 0 0