100 atcoder#ABC174D. [ABC174D] Alter Altar
[ABC174D] Alter Altar
Score : points
Problem Statement
An altar enshrines stones arranged in a row from left to right. The color of the -th stone from the left is given to you as a character ; R
stands for red and W
stands for white.
You can do the following two kinds of operations any number of times in any order:
- Choose two stones (not necessarily adjacent) and swap them.
- Choose one stone and change its color (from red to white and vice versa).
According to a fortune-teller, a white stone placed to the immediate left of a red stone will bring a disaster. At least how many operations are needed to reach a situation without such a white stone?
Constraints
- is
R
orW
.
Input
Input is given from Standard Input in the following format:
Output
Print an integer representing the minimum number of operations needed.
4
WWRR
2
For example, the two operations below will achieve the objective.
- Swap the -st and -rd stones from the left, resulting in
RWWR
. - Change the color of the -th stone from the left, resulting in
RWWW
.
2
RR
0
It can be the case that no operation is needed.
8
WRWWRWRR
3