题库练习 Absent Remainder
← 上一题 下一题 →

A14707 | Absent Remainder

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

You are given a sequence $a_1, a_2, \dots, a_n$ consisting of $n$ pairwise distinct positive integers.

Find $\left\lfloor \frac n 2 \right\rfloor$ different pairs of integers $x$ and $y$ such that:

- $x \neq 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.

$\lfloor x \rfloor$ 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 \le t \le 10^4$ ) — the number of testcases.

The first line of each testcase contains a single integer $n$ ( $2 \le n \le 2 \cdot 10^5$ ) — the length of the sequence.

The second line of each testcase contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 10^6$ ).

All numbers in the sequence are pairwise distinct. The sum of $n$ over all testcases doesn't exceed $2 \cdot 10^5$ .

输出格式

The answer for each testcase should contain $\left\lfloor \frac n 2 \right\rfloor$ different pairs of integers $x$ and $y$ such that $x \neq 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
C++ 编辑器
输入
输出