A13196 | Assigning to Classes
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Reminder: the [median](https://en.wikipedia.org/wiki/Median) of the array $[a_1, a_2, \dots, a_{2k+1}]$ of odd number of elements is defined as follows: let $[b_1, b_2, \dots, b_{2k+1}]$ be the elements of the array in the sorted order. Then median of this array is equal to $b_{k+1}$ .
There are $2n$ students, the $i$ -th student has skill level $a_i$ . It's not guaranteed that all skill levels are distinct.
Let's define skill level of a class as the median of skill levels of students of the class.
As a principal of the school, you would like to assign each student to one of the $2$ classes such that each class has odd number of students (not divisible by $2$ ). The number of students in the classes may be equal or different, by your choice. Every student has to be assigned to exactly one class. Among such partitions, you want to choose one in which the absolute difference between skill levels of the classes is minimized.
What is the minimum possible absolute difference you can achieve?
There are $2n$ students, the $i$ -th student has skill level $a_i$ . It's not guaranteed that all skill levels are distinct.
Let's define skill level of a class as the median of skill levels of students of the class.
As a principal of the school, you would like to assign each student to one of the $2$ classes such that each class has odd number of students (not divisible by $2$ ). The number of students in the classes may be equal or different, by your choice. Every student has to be assigned to exactly one class. Among such partitions, you want to choose one in which the absolute difference between skill levels of the classes is minimized.
What is the minimum possible absolute difference you can achieve?
输入格式
Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 10^4$ ). The description of the test cases follows.
The first line of each test case contains a single integer $n$ ( $1 \le n \le 10^5$ ) — the number of students halved.
The second line of each test case contains $2n$ integers $a_1, a_2, \dots, a_{2 n}$ ( $1 \le a_i \le 10^9$ ) — skill levels of students.
It is guaranteed that the sum of $n$ over all test cases does not exceed $10^5$ .
The first line of each test case contains a single integer $n$ ( $1 \le n \le 10^5$ ) — the number of students halved.
The second line of each test case contains $2n$ integers $a_1, a_2, \dots, a_{2 n}$ ( $1 \le a_i \le 10^9$ ) — skill levels of students.
It is guaranteed that the sum of $n$ over all test cases does not exceed $10^5$ .
输出格式
For each test case, output a single integer, the minimum possible absolute difference between skill levels of two classes of odd sizes.
输入输出样例
输入 #1
3 1 1 1 3 6 5 4 1 2 3 5 13 4 20 13 2 5 8 3 17 16
输出 #1
0 1 5
In the first test, there is only one way to partition students — one in each class. The absolute difference of the skill levels will be $|1 - 1| = 0$ .
In the second test, one of the possible partitions is to make the first class of students with skill levels $[6, 4, 2]$ , so that the skill level of the first class will be $4$ , and second with $[5, 1, 3]$ , so that the skill level of the second class will be $3$ . Absolute difference will be $|4 - 3| = 1$ .
Note that you can't assign like $[2, 3]$ , $[6, 5, 4, 1]$ or $[]$ , $[6, 5, 4, 1, 2, 3]$ because classes have even number of students.
$[2]$ , $[1, 3, 4]$ is also not possible because students with skills $5$ and $6$ aren't assigned to a class.
In the third test you can assign the students in the following way: $[3, 4, 13, 13, 20], [2, 5, 8, 16, 17]$ or $[3, 8, 17], [2, 4, 5, 13, 13, 16, 20]$ . Both divisions give minimal possible absolute difference.
In the second test, one of the possible partitions is to make the first class of students with skill levels $[6, 4, 2]$ , so that the skill level of the first class will be $4$ , and second with $[5, 1, 3]$ , so that the skill level of the second class will be $3$ . Absolute difference will be $|4 - 3| = 1$ .
Note that you can't assign like $[2, 3]$ , $[6, 5, 4, 1]$ or $[]$ , $[6, 5, 4, 1, 2, 3]$ because classes have even number of students.
$[2]$ , $[1, 3, 4]$ is also not possible because students with skills $5$ and $6$ aren't assigned to a class.
In the third test you can assign the students in the following way: $[3, 4, 13, 13, 20], [2, 5, 8, 16, 17]$ or $[3, 8, 17], [2, 4, 5, 13, 13, 16, 20]$ . Both divisions give minimal possible absolute difference.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted