Problem9352--CCC '21 J4 - Arranging Books

9352: CCC '21 J4 - Arranging Books

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

Valentina wants books on a shelf to be arranged in a particular way. Every time she sees a shelf of books, she rearranges the books so that all the large books appear on the left, followed by all the medium-sized books, and then all the small books on the right. She does this by repeatedly choosing any two books and exchanging their locations. Exchanging the locations of two books is called a swap.
Help Valentina determine the fewest number of swaps needed to arrange a shelf of books as she wishes.

Input

The input will consist of exactly one line containing at least one character.
at most 500,000 characters, each character will be L, M or S.

Output

Output a single integer which is equal to the minimum possible number of swaps needed to arrange the books so that all occurrences of L come first, followed by all occurrences of M, and then all occurrences of S.

Sample 1 Input

LMMMS

Sample 1 Output

0
The books are already arranged according to Valentina's wishes.

Sample 2 Input

LLSLM

Sample 2 Output

2
By swapping the S and M, we end up with LLMLS. Then the M can be swapped with the L to its right. This is one way to use two swaps to arrange the books as Valentina wants them to be. It is not possible to use fewer swaps because both S and M need to be moved but using one swap to exchange them does not leave the books arranged as Valentina wants them to be.

HINT

相同题目:CCC21j4

Source/Category