QOJ.ac

QOJ

Time Limit: 1 s Memory Limit: 512 MB Total points: 100

#7969. Matryoshka

Statistics

The $\operatorname{mex}$ of a set $S$ is defined as the smallest non-negative integer not present in $S$.

Given a sequence $a_1, \dots, a_n$, for each $1 \leq k \leq n$, we define $b_k$ as follows:

  • For all subsegments of $a$ with length $k$, calculate the $\operatorname{mex}$ of the set of numbers contained in that subsegment.
  • Calculate the $\operatorname{mex}$ of the set of all $\operatorname{mex}$ values obtained in the previous step, and denote this as $b_k$.

Please find the sequence $b$.

Input

The first line contains a positive integer $n$ ($1 \leq n \leq 10^5$).

The second line contains $n$ integers $a_1, \dots, a_n$ ($0 \leq a_i \leq n$).

Output

Output $n$ integers $b_1, \dots, b_n$ on a single line.

Examples

Input 1

6
0 0 0 1 2 3

Output 1

2 3 4 0 0 0

Discussions

About Discussions

The discussion section is only for posting: General Discussions (problem-solving strategies, alternative approaches), and Off-topic conversations.

This is NOT for reporting issues! If you want to report bugs or errors, please use the Issues section below.

Open Discussions 0
No discussions in this category.

Issues

About Issues

If you find any issues with the problem (statement, scoring, time/memory limits, test cases, etc.), you may submit an issue here. A problem moderator will review your issue.

Guidelines:

  1. This is not a place to publish discussions, editorials, or requests to debug your code. Issues are only visible to you and problem moderators.
  2. Do not submit duplicated issues.
  3. Issues must be filed in English or Chinese only.
Active Issues 0
No issues in this category.
Closed/Resolved Issues 0
No issues in this category.