311318: CF1970B1. Exact Neighbours (Easy)

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

B1. Exact Neighbours (Easy)time limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output

The only difference between this and the hard version is that all $a_{i}$ are even.

After some recent attacks on Hogwarts Castle by the Death Eaters, the Order of the Phoenix has decided to station $n$ members in Hogsmead Village. The houses will be situated on a picturesque $n\times n$ square field. Each wizard will have their own house, and every house will belong to some wizard. Each house will take up the space of one square.

However, as you might know wizards are very superstitious. During the weekends, each wizard $i$ will want to visit the house that is exactly $a_{i}$ $(0 \leq a_{i} \leq n)$ away from their own house. The roads in the village are built horizontally and vertically, so the distance between points $(x_{i}, y_{i})$ and $(x_{j}, y_{j})$ on the $n\times n$ field is $ |x_{i} - x_{j}| + |y_{i} - y_{j}|$. The wizards know and trust each other, so one wizard can visit another wizard's house when the second wizard is away. The houses to be built will be big enough for all $n$ wizards to simultaneously visit any house.

Apart from that, each wizard is mandated to have a view of the Hogwarts Castle in the north and the Forbidden Forest in the south, so the house of no other wizard should block the view. In terms of the village, it means that in each column of the $n\times n$ field, there can be at most one house, i.e. if the $i$-th house has coordinates $(x_{i}, y_{i})$, then $x_{i} \neq x_{j}$ for all $i \neq j$.

The Order of the Phoenix doesn't yet know if it is possible to place $n$ houses in such a way that will satisfy the visit and view requirements of all $n$ wizards, so they are asking for your help in designing such a plan.

If it is possible to have a correct placement, where for the $i$-th wizard there is a house that is $a_{i}$ away from it and the house of the $i$-th wizard is the only house in their column, output YES, the position of houses for each wizard, and to the house of which wizard should each wizard go during the weekends.

If it is impossible to have a correct placement, output NO.

Input

The first line contains $n$ ($2 \leq n \leq 2\cdot 10^{5}$), the number of houses to be built.

The second line contains $n$ integers $a_{1}, \ldots, a_{n}$ $(0 \leq a_{i} \leq n)$. All $a_{i}$ are even.

Output

If there exists such a placement, output YES on the first line; otherwise, output NO.

If the answer is YES, output $n + 1$ more lines describing the placement.

The next $n$ lines should contain the positions of the houses $1 \leq x_{i}, y_{i} \leq n$ for each wizard.

The $i$-th element of the last line should contain the index of the wizard, the house of which is exactly $a_{i}$ away from the house of the $i$-th wizard. If there are multiple such wizards, you can output any.

If there are multiple house placement configurations, you can output any.

ExampleInput
4
0 4 2 4
Output
YES
4 4
1 3
2 4
3 1
1 1 1 3
Note

For the sample, the house of the 1st wizard is located at $(4, 4)$, of the 2nd at $(1, 3)$, of the 3rd at $(2, 4)$, of the 4th at $(3, 1)$.

The distance from the house of the 1st wizard to the house of the 1st wizard is $|4 - 4| + |4 - 4| = 0$.

The distance from the house of the 2nd wizard to the house of the 1st wizard is $|1 - 4| + |3 - 4| = 4$.

The distance from the house of the 3rd wizard to the house of the 1st wizard is $|2 - 4| + |4 - 4| = 2$.

The distance from the house of the 4th wizard to the house of the 3rd wizard is $|3 - 2| + |1 - 4| = 4$.

The view and the distance conditions are satisfied for all houses, so the placement is correct.

Output

题目大意:Phoenix组织要在Hogsmead村为n个成员建房子,这些房子要建在一个n×n的正方形区域上。每个巫师周末想去距离自己家恰好为ai(0≤ai≤n)的房子,道路是水平或垂直的,所以两点之间的距离是|x_i - x_j| + |y_i - y_j|。每个巫师还要看到北边的霍格沃茨城堡和南边的禁林,所以每一列只能有一个房子。问是否有一种方案满足所有巫师的要求。

输入数据格式:第一行包含n(2≤n≤2×10^5),表示要建的房子数量。第二行包含n个整数a_1, ..., a_n(0≤a_i≤n),所有ai都是偶数。

输出数据格式:如果存在这样的方案,第一行输出YES;否则输出NO。如果答案为YES,接下来n+1行描述方案。接下来n行包含每个巫师房子的位置(1≤x_i, y_i≤n)。最后一行包含n个整数,第i个数表示距离第i个巫师家恰好为ai的巫师编号。如果有多个这样的巫师,可以输出任何一个。如果有多个方案,可以输出任何一个。题目大意:Phoenix组织要在Hogsmead村为n个成员建房子,这些房子要建在一个n×n的正方形区域上。每个巫师周末想去距离自己家恰好为ai(0≤ai≤n)的房子,道路是水平或垂直的,所以两点之间的距离是|x_i - x_j| + |y_i - y_j|。每个巫师还要看到北边的霍格沃茨城堡和南边的禁林,所以每一列只能有一个房子。问是否有一种方案满足所有巫师的要求。 输入数据格式:第一行包含n(2≤n≤2×10^5),表示要建的房子数量。第二行包含n个整数a_1, ..., a_n(0≤a_i≤n),所有ai都是偶数。 输出数据格式:如果存在这样的方案,第一行输出YES;否则输出NO。如果答案为YES,接下来n+1行描述方案。接下来n行包含每个巫师房子的位置(1≤x_i, y_i≤n)。最后一行包含n个整数,第i个数表示距离第i个巫师家恰好为ai的巫师编号。如果有多个这样的巫师,可以输出任何一个。如果有多个方案,可以输出任何一个。

加入题单

上一题 下一题 算法标签: