CF1214E.Petya and Construction Set

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

It's Petya's birthday party and his friends have presented him a brand new "Electrician- nn " construction set, which they are sure he will enjoy as he always does with weird puzzles they give him.

Construction set "Electrician- nn " consists of 2n12n - 1 wires and 2n2n light bulbs. Each bulb has its own unique index that is an integer from 11 to 2n2n , while all wires look the same and are indistinguishable. In order to complete this construction set one has to use each of the wires to connect two distinct bulbs. We define a chain in a completed construction set as a sequence of distinct bulbs of length at least two, such that every two consecutive bulbs in this sequence are directly connected by a wire. Completed construction set configuration is said to be correct if a resulting network of bulbs and wires has a tree structure, i.e. any two distinct bulbs are the endpoints of some chain.

Petya was assembling different configurations for several days, and he noticed that sometimes some of the bulbs turn on. After a series of experiments he came up with a conclusion that bulbs indexed 2i2i and 2i12i - 1 turn on if the chain connecting them consists of exactly did_i wires. Moreover, the following important condition holds: the value of did_i is never greater than nn .

Petya did his best but was not able to find a configuration that makes all bulbs to turn on, so he seeks your assistance. Please, find out a configuration that makes all bulbs shine. It is guaranteed that such configuration always exists.

输入格式

The first line of the input contains a single integer nn ( 1n1000001 \leq n \leq 100\,000 ) — the parameter of a construction set that defines the number of bulbs and the number of wires.

Next line contains nn integers d1,d2,,dnd_1, d_2, \ldots, d_n ( 1din1 \leq d_i \leq n ), where did_i stands for the number of wires the chain between bulbs 2i2i and 2i12i - 1 should consist of.

输出格式

Print 2n12n - 1 lines. The ii -th of them should contain two distinct integers aia_i and bib_i ( 1ai,bi2n1 \leq a_i, b_i \leq 2n , aibia_i \ne b_i ) — indices of bulbs connected by a wire.

If there are several possible valid answer you can print any of them.

输入输出样例

  • 输入#1

    3
    2 2 2
    

    输出#1

    1 6
    2 6
    3 5
    3 6
    4 5
    
  • 输入#2

    4
    2 2 2 1
    

    输出#2

    1 6
    1 7
    2 6
    3 5
    3 6
    4 5
    7 8
    
  • 输入#3

    6
    2 2 2 2 2 2
    

    输出#3

    1 3
    2 3
    3 5
    4 5
    5 7
    6 7
    7 12
    8 12
    9 11
    9 12
    10 11
    
  • 输入#4

    2
    1 1
    

    输出#4

    1 2
    1 4
    3 4
    

说明/提示

Answer for the first sample test. Answer for the second sample test.

首页