CF1788C.Matching Numbers
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given an integer n . Pair the integers 1 to 2n (i.e. each integer should be in exactly one pair) so that each sum of matched pairs is consecutive and distinct.
Formally, let (ai,bi) be the pairs that you matched. {a1,b1,a2,b2,…,an,bn} should be a permutation of {1,2,…,2n} . Let the sorted list of {a1+b1,a2+b2,…,an+bn} be s1<s2<…<sn . We must have si+1−si=1 for 1≤i≤n−1 .
输入格式
Each test contains multiple test cases. The first line contains the number of test cases t ( 1≤t≤500 ). The description of the test cases follows.
For each test case, a single integer n ( 1≤n≤105 ) is given.
It is guaranteed that the sum of n over all test cases doesn't exceed 105 .
输出格式
For each test case, if it is impossible to make such a pairing, print "No".
Otherwise, print "Yes" followed by n lines.
At each line, print two integers that are paired.
You can output the answer in any case (upper or lower). For example, the strings "yEs", "yes", "Yes", and "YES" will be recognized as positive responses.
If there are multiple solutions, print any.
输入输出样例
输入#1
4 1 2 3 4
输出#1
Yes 1 2 No Yes 1 6 3 5 4 2 No
说明/提示
For the third test case, each integer from 1 to 6 appears once. The sums of matched pairs are 4+2=6 , 1+6=7 , and 3+5=8 , which are consecutive and distinct.