4342: Blog Post Rating

内存限制:256 MB 时间限制:2 S 标准输入输出
题目类型:传统 评测方式:文本比较 上传者:
提交:2 通过:2

题目描述

E. Blog Post Rating
time limit per test
4 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output
It's well-known that blog posts are an important part of Codeforces platform. Every blog post has a global characteristic changing over time− its community rating. A newly created blog post's community rating is 0. Codeforces users may visit the blog post page and rate it, changing its community rating by +1 or -1.
Consider the following model of Codeforces users' behavior. The i-th user has his own estimated blog post rating denoted by an integer ai. When a user visits a blog post page, he compares his estimated blog post rating to its community rating. If his estimated rating is higher, he rates the blog post with +1 (thus, the blog post's community rating increases by 1). If his estimated rating is lower, he rates the blog post with -1 (decreasing its community rating by 1). If the estimated rating and the community rating are equal, user doesn't rate the blog post at all (in this case we'll say that user rates the blog post for 0). In any case, after this procedure user closes the blog post page and never opens it again.
Consider a newly created blog post with the initial community rating of 0. For each of n Codeforces users, numbered from 1 to n, his estimated blog post rating ai is known.
For each k from 1 to n, inclusive, the following question is asked. Let users with indices from 1 to k, in some order, visit the blog post page, rate the blog post and close the page. Each user opens the blog post only after the previous user closes it. What could be the maximum possible community rating of the blog post after these k visits?
Input
The first line contains a single integer n (1≤n≤5·105)− the number of Codeforces users.
The second line contains n integers a1,a2,...,an (-5·105ai≤5·105)− estimated blog post ratings for users in order from 1 to n.
Output
For each k from 1 to n, output a single integer equal to the maximum possible community rating of the blog post after users with indices from 1 to k, in some order, visit the blog post page, rate the blog post, and close the page.
Examples
Input
4
2 0 2 2
Output
1
1
2
2
Input
7
2 -3 -2 5 0 -3 1
Output
1
0
-1
0
1
1
2

输入样例 复制


输出样例 复制