CF547B.Mike and Feet

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Mike is the president of country What-The-Fatherland. There are nn bears living in this country besides Mike. All of them are standing in a line and they are numbered from 11 to nn from left to right. ii -th bear is exactly aia_{i} 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 xx such that 1<=x<=n1<=x<=n the maximum strength among all groups of size xx .

输入格式

The first line of input contains integer nn ( 1<=n<=2×1051<=n<=2×10^{5} ), the number of bears.

The second line contains nn integers separated by space, a1,a2,...,ana_{1},a_{2},...,a_{n} ( 1<=ai<=1091<=a_{i}<=10^{9} ), heights of bears.

输出格式

Print nn integers in one line. For each xx from 11 to nn , print the maximum strength among all groups of size xx .

输入输出样例

  • 输入#1

    10
    1 2 3 4 5 4 3 2 1 6
    

    输出#1

    6 4 4 3 3 2 2 1 1 1 
    
首页