A12962 | Marbles
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Monocarp has arranged $n$ colored marbles in a row. The color of the $i$ -th marble is $a_i$ . 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.
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 \le n \le 4 \cdot 10^5)$ — the number of marbles.
The second line contains an integer sequence $a_1, a_2, \dots, a_n$ $(1 \le a_i \le 20)$ , where $a_i$ is the color of the $i$ -th marble.
The second line contains an integer sequence $a_1, a_2, \dots, a_n$ $(1 \le a_i \le 20)$ , where $a_i$ 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.
In the second example there's no need to perform any operations.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted