A11213 | Make a Permutation!
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Ivan has an array consisting of $n$ elements. Each of the elements is an integer from $1$ to $n$ .
Recently Ivan learned about permutations and their lexicographical order. Now he wants to change (replace) minimum number of elements in his array in such a way that his array becomes a permutation (i.e. each of the integers from $1$ to $n$ was encountered in his array exactly once). If there are multiple ways to do it he wants to find the lexicographically minimal permutation among them.
Thus minimizing the number of changes has the first priority, lexicographical minimizing has the second priority.
In order to determine which of the two permutations is lexicographically smaller, we compare their first elements. If they are equal — compare the second, and so on. If we have two permutations $x$ and $y$ , then $x$ is lexicographically smaller if $x_{i}<y_{i}$ , where $i$ is the first index in which the permutations $x$ and $y$ differ.
Determine the array Ivan will obtain after performing all the changes.
Recently Ivan learned about permutations and their lexicographical order. Now he wants to change (replace) minimum number of elements in his array in such a way that his array becomes a permutation (i.e. each of the integers from $1$ to $n$ was encountered in his array exactly once). If there are multiple ways to do it he wants to find the lexicographically minimal permutation among them.
Thus minimizing the number of changes has the first priority, lexicographical minimizing has the second priority.
In order to determine which of the two permutations is lexicographically smaller, we compare their first elements. If they are equal — compare the second, and so on. If we have two permutations $x$ and $y$ , then $x$ is lexicographically smaller if $x_{i}<y_{i}$ , where $i$ is the first index in which the permutations $x$ and $y$ differ.
Determine the array Ivan will obtain after performing all the changes.
输入格式
The first line contains an single integer $n$ ( $2<=n<=200000$ ) — the number of elements in Ivan's array.
The second line contains a sequence of integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=n$ ) — the description of Ivan's array.
The second line contains a sequence of integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=n$ ) — the description of Ivan's array.
输出格式
In the first line print $q$ — the minimum number of elements that need to be changed in Ivan's array in order to make his array a permutation. In the second line, print the lexicographically minimal permutation which can be obtained from array with $q$ changes.
输入输出样例
输入 #1
4 3 2 2 3
输出 #1
2 1 2 4 3
输入 #2
6 4 5 6 3 2 1
输出 #2
0 4 5 6 3 2 1
输入 #3
10 6 8 4 6 7 1 6 3 4 5
输出 #3
3 2 8 4 6 7 1 9 3 10 5
In the first example Ivan needs to replace number three in position $1$ with number one, and number two in position $3$ with number four. Then he will get a permutation \[1, 2, 4, 3\] with only two changed numbers — this permutation is lexicographically minimal among all suitable.
In the second example Ivan does not need to change anything because his array already is a permutation.
In the second example Ivan does not need to change anything because his array already is a permutation.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted