CF722D.Generating Sets

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given a set YY of nn distinct positive integers y1,y2,...,yny_{1},y_{2},...,y_{n} .

Set XX of nn distinct positive integers x1,x2,...,xnx_{1},x_{2},...,x_{n} is said to generate set YY if one can transform XX to YY by applying some number of the following two operation to integers in XX :

  1. Take any integer xix_{i} and multiply it by two, i.e. replace xix_{i} with 2xi2·x_{i} .
  2. Take any integer xix_{i} , multiply it by two and add one, i.e. replace xix_{i} with 2xi+12·x_{i}+1 .

Note that integers in XX are not required to be distinct after each operation.

Two sets of distinct integers XX and YY are equal if they are equal as sets. In other words, if we write elements of the sets in the array in the increasing order, these arrays would be equal.

Note, that any set of integers (or its permutation) generates itself.

You are given a set YY and have to find a set XX that generates YY and the maximum element of XX is mininum possible.

输入格式

The first line of the input contains a single integer nn ( 1<=n<=500001<=n<=50000 ) — the number of elements in YY .

The second line contains nn integers y1,...,yny_{1},...,y_{n} ( 1<=yi<=1091<=y_{i}<=10^{9} ), that are guaranteed to be distinct.

输出格式

Print nn integers — set of distinct integers that generate YY and the maximum element of which is minimum possible. If there are several such sets, print any of them.

输入输出样例

  • 输入#1

    5
    1 2 3 4 5
    

    输出#1

    4 5 2 3 1 
    
  • 输入#2

    6
    15 14 3 13 1 12
    

    输出#2

    12 13 14 7 3 1 
    
  • 输入#3

    6
    9 7 13 17 5 11
    

    输出#3

    4 5 2 6 3 1 
    
首页