A14350 | Mean Inequality
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an array $a$ of $2n$ distinct integers. You want to arrange the elements of the array in a circle such that no element is equal to the the arithmetic mean of its $2$ neighbours.
More formally, find an array $b$ , such that:
- $b$ is a permutation of $a$ .
- For every $i$ from $1$ to $2n$ , $b_i \neq \frac{b_{i-1}+b_{i+1}}{2}$ , where $b_0 = b_{2n}$ and $b_{2n+1} = b_1$ .
It can be proved that under the constraints of this problem, such array $b$ always exists.
More formally, find an array $b$ , such that:
- $b$ is a permutation of $a$ .
- For every $i$ from $1$ to $2n$ , $b_i \neq \frac{b_{i-1}+b_{i+1}}{2}$ , where $b_0 = b_{2n}$ and $b_{2n+1} = b_1$ .
It can be proved that under the constraints of this problem, such array $b$ always exists.
输入格式
The first line of input contains a single integer $t$ $(1 \leq t \leq 1000)$ — the number of testcases. The description of testcases follows.
The first line of each testcase contains a single integer $n$ $(1 \leq n \leq 25)$ .
The second line of each testcase contains $2n$ integers $a_1, a_2, \ldots, a_{2n}$ $(1 \leq a_i \leq 10^9)$ — elements of the array.
Note that there is no limit to the sum of $n$ over all testcases.
The first line of each testcase contains a single integer $n$ $(1 \leq n \leq 25)$ .
The second line of each testcase contains $2n$ integers $a_1, a_2, \ldots, a_{2n}$ $(1 \leq a_i \leq 10^9)$ — elements of the array.
Note that there is no limit to the sum of $n$ over all testcases.
输出格式
For each testcase, you should output $2n$ integers, $b_1, b_2, \ldots b_{2n}$ , for which the conditions from the statement are satisfied.
输入输出样例
输入 #1
3 3 1 2 3 4 5 6 2 123 456 789 10 1 6 9
输出 #1
3 1 4 2 5 6 123 10 456 789 9 6
In the first testcase, array $[3, 1, 4, 2, 5, 6]$ works, as it's a permutation of $[1, 2, 3, 4, 5, 6]$ , and $\frac{3+4}{2}\neq 1$ , $\frac{1+2}{2}\neq 4$ , $\frac{4+5}{2}\neq 2$ , $\frac{2+6}{2}\neq 5$ , $\frac{5+3}{2}\neq 6$ , $\frac{6+1}{2}\neq 3$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted