Petya and Construction Set

题意翻译

## 题目描述 你需要构造出一个节点数为 $2n$ 的一棵树. 给出 $n$ 个范围在 $[1, n]$ 的正整数 $d_i$ . 你构造出来的树需要满足: 第 $2i - 1$ 个点与第 $2i$ 个点在树上的距离恰为$d_i$. 这里定义两个点 $u$ , $v$ 之间的距离为 $u$ 到 $v$ 路径上的边数. 如果有多种方案, 输出任意一种即可. ## 输入格式 第一行一个正整数 $n$ , 含义如题目描述所述. 第二行 $n$ 个正整数 $d_i$ , 含义如题目描述所述. ## 输出格式 $2n-1$行, 每行两个正整数 $u_i$ 和 $v_i$ , 表示你构造的树上 $u_i$ 和 $v_i$ 之间连有一条边. ## 数据范围 $1 \leq d_i \leq n \leq 10^5$

题目描述

It's Petya's birthday party and his friends have presented him a brand new "Electrician- $ n $ " construction set, which they are sure he will enjoy as he always does with weird puzzles they give him. Construction set "Electrician- $ n $ " consists of $ 2n - 1 $ wires and $ 2n $ light bulbs. Each bulb has its own unique index that is an integer from $ 1 $ to $ 2n $ , 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 $ 2i $ and $ 2i - 1 $ turn on if the chain connecting them consists of exactly $ d_i $ wires. Moreover, the following important condition holds: the value of $ d_i $ is never greater than $ n $ . 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 $ n $ ( $ 1 \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 $ n $ integers $ d_1, d_2, \ldots, d_n $ ( $ 1 \leq d_i \leq n $ ), where $ d_i $ stands for the number of wires the chain between bulbs $ 2i $ and $ 2i - 1 $ should consist of.

输出格式


Print $ 2n - 1 $ lines. The $ i $ -th of them should contain two distinct integers $ a_i $ and $ b_i $ ( $ 1 \leq a_i, b_i \leq 2n $ , $ a_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

说明

![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1214E/653e46890165db1b6960166c1b7c5da6935781d3.png) Answer for the first sample test. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1214E/1e668da580416d0a9428bdcff70010776ff6715e.png) Answer for the second sample test.