Codeforces 803 B

来源:互联网 发布:虚拟机linux网不可用 编辑:程序博客网 时间:2024/06/05 15:25

You are given the array of integer numbers a0, a1, ..., an - 1. For each element find the distance to the nearest zero (to the element which equals to zero). There is at least one zero element in the given array.

Input

The first line contains integer n (1 ≤ n ≤ 2·105) — length of the arraya. The second line contains integer elements of the array separated by single spaces ( - 109 ≤ ai ≤ 109).

Output

Print the sequence d0, d1, ..., dn - 1, wheredi is the difference of indices betweeni and nearestj such thataj = 0. It is possible thati = j.

Example
Input
92 1 0 3 0 0 3 2 4
Output
2 1 0 1 0 0 1 2 3 
Input
50 1 2 3 4
Output
0 1 2 3 4 
Input
75 6 0 1 -2 3 4
Output
2 1 0 1 2 3 4 


就是输出每个数字与离它最近的0的距离


#include<iostream>#include<cstring>#include<algorithm>using namespace std;int zero[200000];int main(){memset(zero,0,4);int n;cin>>n;int m;int count=0;for(int i=0;i<n;i++){cin>>m;if(m==0) zero[count++]=i;}int a=0;int flag=0;for(int i=0;i<n;i++){flag=abs(i-zero[a]);if(a>0){if(flag>0){flag=min(flag,abs(i-zero[a-1]));}}if(flag==0) a++;if(i!=0) cout<<" "<<flag;else cout<<flag;}}



原创粉丝点击