CF547B.Mike and Feet

传统题 时间 1000 ms 内存 256 MiB 10 尝试 1 已通过 1 标签

Mike and Feet

CF547B · Mike and Feet

  • 难度:1900
  • 标签:binary search、data structures、dp、dsu
  • 链接:https://codeforces.com/problemset/problem/547/B
  • 时间限制:1 second 内存限制:256 megabytes
  • 出现位置:假期自习包/B-单调栈与单调队列

英文原题面

Statement

Mike is the president of country What-The-Fatherland. There are n bears living in this country besides Mike. All of them are standing in a line and they are numbered from 1 to n from left to right. i-th bear is exactly ai feet high.

A group of bears is a non-empty contiguous segment of the line. The size of a group is the number of bears in that group. The strength of a group is the minimum height of the bear in that group. Mike is a curious to know for each x such that 1 ≤ x ≤ n the maximum strength among all groups of size x.

Input

The first line of input contains integer n (1 ≤ n ≤ 2 × 105), the number of bears. The second line contains n integers separated by space, a1, a2, ..., an (1 ≤ ai ≤ 109), heights of bears.

Output

Print n integers in one line. For each x from 1 to n, print the maximum strength among all groups of size x.

样例

样例 1

输入:

10
1 2 3 4 5 4 3 2 1 6

输出:

6 4 4 3 3 2 2 1 1 1 

在线编程 IDE

建议全屏模式获得最佳体验