A869.Hamsters and Tigers

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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.

输入格式

The first line contains number nn ( 2<=n<=10002<=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 nn 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.

输出格式

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

输入输出样例

  • 输入#1

    3
    HTH
    

    输出#1

    0
    
  • 输入#2

    9
    HTHTHTHHT
    

    输出#2

    2
    

说明/提示

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 22 with the hamster in position 55 and then — the tiger in position 99 with the hamster in position 77 .

首页