我们定义一个集合的 \operatorname{mex} 是最小的不在 S 中的非负整数。
给定一个序列 a_1,\dots,a_n,对于每个 1\leq k\leq n,我们按照如下方式定义 b_k:
请你求出序列 b。
We define \operatorname{mex} of a set S to be the smallest non-negative integer not in S.
Given a sequence a_1,\dots,a_n, for each 1\leq k\leq n, we define b_k as follows:
Find the sequence b.
输入
第一行输入一个正整数 n(1\leq n\leq 10^5)。
第二行输入 n 个整数 a_1,\dots,a_n(0\leq a_i\leq n)。
The first line enters a positive integer n (1\leq n\leq 10^5).
The second line enters n integers a_1,\dots,a_n (0\leq a_i\leq n).
输出
一行输出 n 个整数 b_1,\dots,b_n。
A line outputs n integers b_1,\dots,b_n.
样例
标准输入 复制文本 |
6 0 0 0 1 2 3 |
标准输出 复制文本 |
2 3 4 0 0 0 |