Question: Program in C++ please: Monocarp has drawn a tree (an undirected connected acyclic graph) and then has given each vertex an index. All indices are

Program in C++ please:

Monocarp has drawn a tree (an undirected connected acyclic graph) and then has given each vertex an index. All indices are distinct numbers from 1 to n. For every edge e of this tree, Monocarp has written two numbers: the maximum indices of the vertices of the two components formed if the edge e (and only this edge) is erased from the tree.

Monocarp has given you a list of n1 pairs of numbers. He wants you to provide an example of a tree that will produce the said list if this tree exists. If such tree does not exist, say so.

Input

The first line contains one integer n (2n1000) the number of vertices in the tree.

Each of the next n1 lines contains two integers ai and bi each (1 ai i n) the maximal indices of vertices in the components formed if the i-th edge is removed.

Output

If there is no such tree that can produce the given list of pairs, print "NO" (without quotes).

Otherwise print "YES" (without quotes) in the first line and the edges of the tree in the next n1 lines. Each of the last n1 lines should contain two integers xi and yi (1xi,yin) vertices connected by an edge.

Note: The numeration of edges doesn't matter for this task. Your solution will be considered correct if your tree produces the same pairs as given in the input file (possibly reordered). That means that you can print the edges of the tree you reconstructed in any order.

Examples

Input

4 3 4 1 4 3 4 

Output

YES 1 3 3 2 2 4 

Input

3 1 3 1 3 

Output

NO 

Input

3 1 2 2 3 

Output

NO 

Note

Possible tree from the first example. Dotted lines show edges you need to remove to get appropriate pairs.

Program in C++ please: Monocarp has drawn a tree (an undirected connected

Transcribed image text

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!