시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 1024 MB54312562.500%

문제

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.

입력

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

출력

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.

예제 입력 1

LMMMS

예제 출력 1

0

The books are already arranged according to Valentina’s wishes.

예제 입력 2

LLSLM

예제 출력 2

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.