题库练习 Bear and Company
← 上一题 下一题 →

A10811 | Bear and Company

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Bear Limak prepares problems for a programming competition. Of course, it would be unprofessional to mention the sponsor name in the statement. Limak takes it seriously and he is going to change some words. To make it still possible to read, he will try to modify each word as little as possible.

Limak has a string $s$ that consists of uppercase English letters. In one move he can swap two adjacent letters of the string. For example, he can transform a string "ABBC" into "BABC" or "ABCB" in one move.

Limak wants to obtain a string without a substring "VK" (i.e. there should be no letter 'V' immediately followed by letter 'K'). It can be easily proved that it's possible for any initial string $s$ .

What is the minimum possible number of moves Limak can do?

输入格式

The first line of the input contains an integer $n$ ( $1<=n<=75$ ) — the length of the string.

The second line contains a string $s$ , consisting of uppercase English letters. The length of the string is equal to $n$ .

输出格式

Print one integer, denoting the minimum possible number of moves Limak can do, in order to obtain a string without a substring "VK".

输入输出样例

输入 #1
4
VKVK
输出 #1
3
输入 #2
5
BVVKV
输出 #2
2
输入 #3
7
VVKEVKK
输出 #3
3
输入 #4
20
VKVKVVVKVOVKVQKKKVVK
输出 #4
8
输入 #5
5
LIMAK
输出 #5
0
C++ 编辑器
输入
输出