A14082 | Meximization
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given an integer $n$ and an array $a_1, a_2, \ldots, a_n$ . You should reorder the elements of the array $a$ in such way that the sum of $\textbf{MEX}$ on prefixes ( $i$ -th prefix is $a_1, a_2, \ldots, a_i$ ) is maximized.
Formally, you should find an array $b_1, b_2, \ldots, b_n$ , such that the sets of elements of arrays $a$ and $b$ are equal (it is equivalent to array $b$ can be found as an array $a$ with some reordering of its elements) and $\sum\limits_{i=1}^{n} \textbf{MEX}(b_1, b_2, \ldots, b_i)$ is maximized.
$\textbf{MEX}$ of a set of nonnegative integers is the minimal nonnegative integer such that it is not in the set.
For example, $\textbf{MEX}(\{1, 2, 3\}) = 0$ , $\textbf{MEX}(\{0, 1, 2, 4, 5\}) = 3$ .
Formally, you should find an array $b_1, b_2, \ldots, b_n$ , such that the sets of elements of arrays $a$ and $b$ are equal (it is equivalent to array $b$ can be found as an array $a$ with some reordering of its elements) and $\sum\limits_{i=1}^{n} \textbf{MEX}(b_1, b_2, \ldots, b_i)$ is maximized.
$\textbf{MEX}$ of a set of nonnegative integers is the minimal nonnegative integer such that it is not in the set.
For example, $\textbf{MEX}(\{1, 2, 3\}) = 0$ , $\textbf{MEX}(\{0, 1, 2, 4, 5\}) = 3$ .
输入格式
The first line contains a single integer $t$ $(1 \le t \le 100)$ — the number of test cases.
The first line of each test case contains a single integer $n$ $(1 \le n \le 100)$ .
The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ $(0 \le a_i \le 100)$ .
The first line of each test case contains a single integer $n$ $(1 \le n \le 100)$ .
The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ $(0 \le a_i \le 100)$ .
输出格式
For each test case print an array $b_1, b_2, \ldots, b_n$ — the optimal reordering of $a_1, a_2, \ldots, a_n$ , so the sum of $\textbf{MEX}$ on its prefixes is maximized.
If there exist multiple optimal answers you can find any.
If there exist multiple optimal answers you can find any.
输入输出样例
输入 #1
3 7 4 2 0 1 3 3 7 5 2 2 8 6 9 1 0
输出 #1
0 1 2 3 4 7 3 2 6 8 9 2 0
In the first test case in the answer $\textbf{MEX}$ for prefixes will be:
1. $\textbf{MEX}(\{0\}) = 1$
2. $\textbf{MEX}(\{0, 1\}) = 2$
3. $\textbf{MEX}(\{0, 1, 2\}) = 3$
4. $\textbf{MEX}(\{0, 1, 2, 3\}) = 4$
5. $\textbf{MEX}(\{0, 1, 2, 3, 4\}) = 5$
6. $\textbf{MEX}(\{0, 1, 2, 3, 4, 7\}) = 5$
7. $\textbf{MEX}(\{0, 1, 2, 3, 4, 7, 3\}) = 5$
The sum of $\textbf{MEX} = 1 + 2 + 3 + 4 + 5 + 5 + 5 = 25$ . It can be proven, that it is a maximum possible sum of $\textbf{MEX}$ on prefixes.
1. $\textbf{MEX}(\{0\}) = 1$
2. $\textbf{MEX}(\{0, 1\}) = 2$
3. $\textbf{MEX}(\{0, 1, 2\}) = 3$
4. $\textbf{MEX}(\{0, 1, 2, 3\}) = 4$
5. $\textbf{MEX}(\{0, 1, 2, 3, 4\}) = 5$
6. $\textbf{MEX}(\{0, 1, 2, 3, 4, 7\}) = 5$
7. $\textbf{MEX}(\{0, 1, 2, 3, 4, 7, 3\}) = 5$
The sum of $\textbf{MEX} = 1 + 2 + 3 + 4 + 5 + 5 + 5 = 25$ . It can be proven, that it is a maximum possible sum of $\textbf{MEX}$ on prefixes.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted