CF590A.Median Smoothing

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A schoolboy named Vasya loves reading books on programming and mathematics. He has recently read an encyclopedia article that described the method of median smoothing (or median filter) and its many applications in science and engineering. Vasya liked the idea of the method very much, and he decided to try it in practice.

Applying the simplest variant of median smoothing to the sequence of numbers a1,a2,...,ana_{1},a_{2},...,a_{n} will result a new sequence b1,b2,...,bnb_{1},b_{2},...,b_{n} obtained by the following algorithm:

  • b1=a1b_{1}=a_{1} , bn=anb_{n}=a_{n} , that is, the first and the last number of the new sequence match the corresponding numbers of the original sequence.
  • For i=2,...,n1i=2,...,n-1 value bib_{i} is equal to the median of three values ai1a_{i-1} , aia_{i} and ai+1a_{i+1} .

The median of a set of three numbers is the number that goes on the second place, when these three numbers are written in the non-decreasing order. For example, the median of the set 5, 1, 2 is number 2, and the median of set 1, 0, 1 is equal to 1.

In order to make the task easier, Vasya decided to apply the method to sequences consisting of zeros and ones only.

Having made the procedure once, Vasya looked at the resulting sequence and thought: what if I apply the algorithm to it once again, and then apply it to the next result, and so on? Vasya tried a couple of examples and found out that after some number of median smoothing algorithm applications the sequence can stop changing. We say that the sequence is stable, if it does not change when the median smoothing is applied to it.

Now Vasya wonders, whether the sequence always eventually becomes stable. He asks you to write a program that, given a sequence of zeros and ones, will determine whether it ever becomes stable. Moreover, if it ever becomes stable, then you should determine what will it look like and how many times one needs to apply the median smoothing algorithm to initial sequence in order to obtain a stable one.

输入格式

The first input line of the input contains a single integer nn ( 3<=n<=5000003<=n<=500000 ) — the length of the initial sequence.

The next line contains nn integers a1,a2,...,ana_{1},a_{2},...,a_{n} ( ai=0a_{i}=0 or ai=1a_{i}=1 ), giving the initial sequence itself.

输出格式

If the sequence will never become stable, print a single number 1-1 .

Otherwise, first print a single integer — the minimum number of times one needs to apply the median smoothing algorithm to the initial sequence before it becomes is stable. In the second line print nn numbers separated by a space — the resulting sequence itself.

输入输出样例

  • 输入#1

    4
    0 0 1 1
    

    输出#1

    0
    0 0 1 1
    
  • 输入#2

    5
    0 1 0 1 0
    

    输出#2

    2
    0 0 0 0 0
    

说明/提示

In the second sample the stabilization occurs in two steps: , and the sequence 0000000000 is obviously stable.

首页