CF1215E.Marbles
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Monocarp has arranged n colored marbles in a row. The color of the i -th marble is ai . Monocarp likes ordered things, so he wants to rearrange marbles in such a way that all marbles of the same color form a contiguos segment (and there is only one such segment for each color).
In other words, Monocarp wants to rearrange marbles so that, for every color j , if the leftmost marble of color j is l -th in the row, and the rightmost marble of this color has position r in the row, then every marble from l to r has color j .
To achieve his goal, Monocarp can do the following operation any number of times: choose two neighbouring marbles, and swap them.
You have to calculate the minimum number of operations Monocarp has to perform to rearrange the marbles. Note that the order of segments of marbles having equal color does not matter, it is only required that, for every color, all the marbles of this color form exactly one contiguous segment.
输入格式
The first line contains one integer n (2≤n≤4⋅105) — the number of marbles.
The second line contains an integer sequence a1,a2,…,an (1≤ai≤20) , where ai is the color of the i -th marble.
输出格式
Print the minimum number of operations Monocarp has to perform to achieve his goal.
输入输出样例
输入#1
7 3 4 2 3 4 2 2
输出#1
3
输入#2
5 20 1 14 10 2
输出#2
0
输入#3
13 5 5 4 4 3 5 7 6 5 4 4 6 5
输出#3
21
说明/提示
In the first example three operations are enough. Firstly, Monocarp should swap the third and the fourth marbles, so the sequence of colors is [3,4,3,2,4,2,2] . Then Monocarp should swap the second and the third marbles, so the sequence is [3,3,4,2,4,2,2] . And finally, Monocarp should swap the fourth and the fifth marbles, so the sequence is [3,3,4,4,2,2,2] .
In the second example there's no need to perform any operations.