Score : 700 points
You are given an integer N. Determine if there exists a tree with 2N vertices numbered 1 to 2N satisfying the following condition, and show one such tree if the answer is yes.
Input is given from Standard Input in the following format:
N
If there exists a tree satisfying the condition in the statement, print Yes
; otherwise, print No
.
Then, if such a tree exists, print the 2N-1 edges of such a tree in the subsequent 2N-1 lines, in the following format:
a_{1} b_{1} \vdots a_{2N-1} b_{2N-1}
Here each pair (a_i, b_i) means that there is an edge connecting Vertex a_i and b_i. The edges may be printed in any order.
3
Yes 1 2 2 3 3 4 4 5 5 6
1
No