A13914 | The Struggling Contestant
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
To help those contestants who struggle a lot in contests, the headquarters of Codeforces are planning to introduce Division 5. In this new division, the tags of all problems will be announced prior to the round to help the contestants.
The contest consists of $n$ problems, where the tag of the $i$ -th problem is denoted by an integer $a_i$ .
You want to AK (solve all problems). To do that, you must solve the problems in some order. To make the contest funnier, you created extra limitations on yourself. You do not want to solve two problems consecutively with the same tag since it is boring. Also, you are afraid of big jumps in difficulties while solving them, so you want to minimize the number of times that you solve two problems consecutively that are not adjacent in the contest order.
Formally, your solve order can be described by a permutation $p$ of length $n$ . The cost of a permutation is defined as the number of indices $i$ ( $1\le i<n$ ) where $|p_{i+1}-p_i|>1$ . You have the requirement that $a_{p_i}\ne a_{p_{i+1}}$ for all $1\le i< n$ .
You want to know the minimum possible cost of permutation that satisfies the requirement. If no permutations meet this requirement, you should report about it.
The contest consists of $n$ problems, where the tag of the $i$ -th problem is denoted by an integer $a_i$ .
You want to AK (solve all problems). To do that, you must solve the problems in some order. To make the contest funnier, you created extra limitations on yourself. You do not want to solve two problems consecutively with the same tag since it is boring. Also, you are afraid of big jumps in difficulties while solving them, so you want to minimize the number of times that you solve two problems consecutively that are not adjacent in the contest order.
Formally, your solve order can be described by a permutation $p$ of length $n$ . The cost of a permutation is defined as the number of indices $i$ ( $1\le i<n$ ) where $|p_{i+1}-p_i|>1$ . You have the requirement that $a_{p_i}\ne a_{p_{i+1}}$ for all $1\le i< n$ .
You want to know the minimum possible cost of permutation that satisfies the requirement. If no permutations meet this requirement, you should report about it.
输入格式
The first line contains a single integer $t$ ( $1\leq t\leq 10^4$ ) — the number of test cases.
The first line of the description of each test case contains a single integer $n$ ( $1 \le n \le 10^5$ ) — the number of problems in the contest.
The next line contains $n$ integers $a_1,a_2,\ldots a_n$ ( $1 \le a_i \le n$ ) — the tags of the problems.
It is guaranteed that the sum of $n$ over all test cases does not exceed $10^5$ .
The first line of the description of each test case contains a single integer $n$ ( $1 \le n \le 10^5$ ) — the number of problems in the contest.
The next line contains $n$ integers $a_1,a_2,\ldots a_n$ ( $1 \le a_i \le n$ ) — the tags of the problems.
It is guaranteed that the sum of $n$ over all test cases does not exceed $10^5$ .
输出格式
For each test case, if there are no permutations that satisfy the required condition, print $-1$ . Otherwise, print the minimum possible cost of a permutation that satisfies the required condition.
输入输出样例
输入 #1
4 6 2 1 2 3 1 1 5 1 1 1 2 2 8 7 7 2 7 7 1 8 7 10 1 2 3 4 1 1 2 3 4 1
输出 #1
1 3 -1 2
In the first test case, let $p=[5, 4, 3, 2, 1, 6]$ . The cost is $1$ because we jump from $p_5=1$ to $p_6=6$ , and $|6-1|>1$ . This permutation is valid because we don't solve problems with the same tag twice in a row. We cannot find a permutation with a cost smaller than $1$ .
In the second test case, let $p=[1,5,2,4,3]$ . The cost is $3$ because $|p_2-p_1|>1$ , $|p_3-p_2|>1$ , and $|p_4-p_3|>1$ . The permutation is valid because we don't solve problems with the same tag twice in a row. We cannot find a permutation with a cost smaller than $3$ .
In the third test case, for any order of solving the problems, we will solve two problems with the same tag consecutively, so the answer is $-1$ .
In the second test case, let $p=[1,5,2,4,3]$ . The cost is $3$ because $|p_2-p_1|>1$ , $|p_3-p_2|>1$ , and $|p_4-p_3|>1$ . The permutation is valid because we don't solve problems with the same tag twice in a row. We cannot find a permutation with a cost smaller than $3$ .
In the third test case, for any order of solving the problems, we will solve two problems with the same tag consecutively, so the answer is $-1$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted