COCI '21 Contest 3 #4 Ekoeko

View as PDF

Submit solution


Points: 15 (partial)
Time limit: 1.0s
Memory limit: 512M

Problem types

You must be familiar with the story of an alien called Eko Eko, who got his name due to a malfunction in his translation device. The little alien is once again back on Earth to help earthlings with a clean-up after the Advent. However, Eko Eko's translation device has stopped working again.

This time, not only does the device repeat a word, but it also changes the order of the letters in a word. For example, the word slon first becomes slonslon, and then by changing the order of the letters, it could become slosnoln or soolnlsn etc. The amount of gold needed to repair Eoo Kek's device depends on the number of swaps of adjacent characters needed to make Kok Oee's badly translated word into a word that is made from just repetition.

For example, if Keo Koe's device translates a word to soolnlsn, it is sufficient to make four swaps of adjacent characters to obtain a word which is made from a repetition - olsnolsn (see the clarification of the third example), so four pieces of gold are enough to repair his device. Notice that the word obtained from a sequence of such swaps is not necessarily the word that Koo Kee originally wanted to say. This does not affect the amount of gold needed to repair his device.

You would like to help Eke Koo, but if you steal a large amount of jewelry from your mother, you won't get a Christmas present. That's why for a given word that came out of Keo Koe's translation device, you want to determine the least possible number of swaps of adjacent characters to get a word that is made from just repetition.

Input Specification

The first line contains a positive integer n, the length of the word that Eek Ook is trying to say.

The second line contains a sequence of 2n characters, each being a lowercase letter of the Latin alphabet, representing the word that came out of Eok Eok's translation device. Each letter will appear an even number of times.

Output Specification

In the only line, print the least possible number of swaps of adjacent characters to make Keo Koe's word into a single-repetition word.

Constraints

For all subtasks:

1 \le n \le 100\,000

SubtaskPointsConstraints
110The string consists of n occurrences of a, and then n of b.
220Each letter appears at most twice.
320The first n and the last n letters are the same, but possibly in a different order.
4201 \le n \le 1000
540No additional constraints.

Sample Input 1

3
koeeok

Sample Output 1

3

Sample Input 2

3
kekoeo

Sample Output 2

1

Sample Input 3

4
soolnlsn

Sample Output 3

4

Explanation for Sample Output 3

One way to get from soolnlsn to a single-repetition word using four swaps is

soolnlsnsolonlsnsolnolsnoslnolsnolsnolsn


Comments

There are no comments at the moment.