跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F1898. Hamsters and Tigers

    ID: 1904 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 4 上传者: 标签>双指针算法思想进阶难度共享题库Codeforces英文题面题目来源题面语言

Hamsters and Tigers

题目描述

C. Hamsters and Tigers
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Today there is going to be an unusual performance at the circus − hamsters and tigers will perform together! All of them stand in circle along the arena edge and now the trainer faces a difficult task: he wants to swap the animals' positions so that all the hamsters stood together and all the tigers also stood together. The trainer swaps the animals in pairs not to create a mess. He orders two animals to step out of the circle and swap places. As hamsters feel highly uncomfortable when tigers are nearby as well as tigers get nervous when there's so much potential prey around (consisting not only of hamsters but also of yummier spectators), the trainer wants to spend as little time as possible moving the animals, i.e. he wants to achieve it with the minimal number of swaps. Your task is to help him.

Input

The first line contains number n (2≤n≤1000) which indicates the total number of animals in the arena. The second line contains the description of the animals' positions. The line consists of n symbols "H" and "T". The "H"s correspond to hamsters and the "T"s correspond to tigers. It is guaranteed that at least one hamster and one tiger are present on the arena. The animals are given in the order in which they are located circle-wise, in addition, the last animal stands near the first one.

Output

Print the single number which is the minimal number of swaps that let the trainer to achieve his goal.

Examples
Input
3
HTH
Output
0
Input
9
HTHTHTHHT
Output
2
Note

In the first example we shouldn't move anybody because the animals of each species already stand apart from the other species. In the second example you may swap, for example, the tiger in position 2 with the hamster in position 5 and then − the tiger in position 9 with the hamster in position 7.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1474 题。保留原作者与原赛事署名。