1806.The same permutation

Time Limit: 1s Memory Limit: 256MB

Seyyed and MoJaK are friends of Sajjad. Sajjad likes a permutation. Seyyed wants to change the permutation in a way that Sajjad won't like it. Seyyed thinks more swaps yield more probability to do that, so he makes MoJaK to perform a swap between every pair of positions (i,j), where i \lt j, exactly once. MoJaK doesn't like to upset Sajjad.

Given the permutation, determine whether it is possible to swap all pairs of positions so that the permutation stays the same. If it is possible find how to do that.

Input Format(From the terminal/stdin)

The first line contains single integer n (1 \le n \le 1000)- the size of the permutation.

As the permutation is not important, you can consider ai=i, where the permutation is a1,a2,...,an.

Output Format(To the terminal/stdout)

If it is not possible to swap all pairs of positions so that the permutation stays the same, print "NO",

Otherwise print "YES", then print 1806_1.png lines: the i-th of these lines should contain two integers a and b (a \lt b)- the positions where the i-th swap is performed.

Sample Input 1

Copy
3
 \n

Sample Output 1

Copy
NO
  \n

Sample Input 2

Copy
1
 \n

Sample Output 2

Copy
YES
   \n

Submit

请先 登录

© 2025 FAQs