CF1613B.Absent Remainder
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given a sequence a1,a2,…,an consisting of n pairwise distinct positive integers.
Find ⌊2n⌋ different pairs of integers x and y such that:
- x=y ;
- x and y appear in a ;
- x mod y doesn't appear in a .
Note that some x or y can belong to multiple pairs.
⌊x⌋ denotes the floor function — the largest integer less than or equal to x . x mod y denotes the remainder from dividing x by y .
If there are multiple solutions, print any of them. It can be shown that at least one solution always exists.
输入格式
The first line contains a single integer t ( 1≤t≤104 ) — the number of testcases.
The first line of each testcase contains a single integer n ( 2≤n≤2⋅105 ) — the length of the sequence.
The second line of each testcase contains n integers a1,a2,…,an ( 1≤ai≤106 ).
All numbers in the sequence are pairwise distinct. The sum of n over all testcases doesn't exceed 2⋅105 .
输出格式
The answer for each testcase should contain ⌊2n⌋ different pairs of integers x and y such that x=y , x and y appear in a and x mod y doesn't appear in a . Print the pairs one after another.
You can print the pairs in any order. However, the order of numbers in the pair should be exactly such that the first number is x and the second number is y . All pairs should be pairwise distinct.
If there are multiple solutions, print any of them.
输入输出样例
输入#1
4 2 1 4 4 2 8 3 4 5 3 8 5 9 7 6 2 7 5 3 4 8
输出#1
4 1 8 2 8 4 9 5 7 5 8 7 4 3 5 2
说明/提示
In the first testcase there are only two pairs: (1,4) and (4,1) . ⌊22⌋=1 , so we have to find one pair. 1 mod 4=1 , and 1 appears in a , so that pair is invalid. Thus, the only possible answer is a pair (4,1) .
In the second testcase, we chose pairs 8 mod 2=0 and 8 mod 4=0 . 0 doesn't appear in a , so that answer is valid. There are multiple possible answers for that testcase.
In the third testcase, the chosen pairs are 9 mod 5=4 and 7 mod 5=2 . Neither 4 , nor 2 , appears in a , so that answer is valid.