309136: CF1630A. And Matching

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

And Matching

题意翻译

给定一个长度为 $n$ 的数组 $a$,对于所有的 $1\leqslant i\leqslant n$,$a_i=i-1$。你需要利用 $a$ 数组中的所有元素组成 $\frac n2$ 个数对 $(p_1,q_1),(p_2,q_2),\dots,(p_n,q_n)$,使得 $\sum\limits_{i=1}^\frac n2 p_i\operatorname{and}q_i=k$。判断是否可能构造出这样的 $\frac n2$ 个数对,如果可能,请构造出一组可能的 $\frac n2$ 个数对,否则输出 `-1`。 数据范围: - $t$ 组数据,$1\leqslant t\leqslant 400$。 - $4\leqslant n,\sum n\leqslant 2^{16}$,$0\leqslant k\leqslant n-1$。 - **保证 $n=2^x(x\in\mathbb N^*)$,即 $n$ 是 $2$ 的次幂**。 Translated by Eason_AC 2022.1.28

题目描述

You are given a set of $ n $ ( $ n $ is always a power of $ 2 $ ) elements containing all integers $ 0, 1, 2, \ldots, n-1 $ exactly once. Find $ \frac{n}{2} $ pairs of elements such that: - Each element in the set is in exactly one pair. - The sum over all pairs of the [bitwise AND](https://en.wikipedia.org/wiki/Bitwise_operation#AND) of its elements must be exactly equal to $ k $ . Formally, if $ a_i $ and $ b_i $ are the elements of the $ i $ -th pair, then the following must hold: $ $\sum_{i=1}^{n/2}{a_i \& b_i} = k, $ $ where $ \\&amp; $ denotes the bitwise AND operation. </li></ul><p>If there are many solutions, print any of them, if there is no solution, print $ -1$ instead.

输入输出格式

输入格式


The input consists of multiple test cases. The first line contains a single integer $ t $ ( $ 1 \leq t \leq 400 $ ) — the number of test cases. Description of the test cases follows. Each test case consists of a single line with two integers $ n $ and $ k $ ( $ 4 \leq n \leq 2^{16} $ , $ n $ is a power of $ 2 $ , $ 0 \leq k \leq n-1 $ ). The sum of $ n $ over all test cases does not exceed $ 2^{16} $ . All test cases in each individual input will be pairwise different.

输出格式


For each test case, if there is no solution, print a single line with the integer $ -1 $ . Otherwise, print $ \frac{n}{2} $ lines, the $ i $ -th of them must contain $ a_i $ and $ b_i $ , the elements in the $ i $ -th pair. If there are many solutions, print any of them. Print the pairs and the elements in the pairs in any order.

输入输出样例

输入样例 #1

4
4 0
4 1
4 2
4 3

输出样例 #1

0 3
1 2
0 2
1 3
0 1
2 3
-1

说明

In the first test, $ (0\&3)+(1\&2) = 0 $ . In the second test, $ (0\&2)+(1\&3) = 1 $ . In the third test, $ (0\&1)+(2\&3) = 2 $ . In the fourth test, there is no solution.

Input

题意翻译

给定一个长度为 $n$ 的数组 $a$,对于所有的 $1\leqslant i\leqslant n$,$a_i=i-1$。你需要利用 $a$ 数组中的所有元素组成 $\frac n2$ 个数对 $(p_1,q_1),(p_2,q_2),\dots,(p_n,q_n)$,使得 $\sum\limits_{i=1}^\frac n2 p_i\operatorname{and}q_i=k$。判断是否可能构造出这样的 $\frac n2$ 个数对,如果可能,请构造出一组可能的 $\frac n2$ 个数对,否则输出 `-1`。 数据范围: - $t$ 组数据,$1\leqslant t\leqslant 400$。 - $4\leqslant n,\sum n\leqslant 2^{16}$,$0\leqslant k\leqslant n-1$。 - **保证 $n=2^x(x\in\mathbb N^*)$,即 $n$ 是 $2$ 的次幂**。 Translated by Eason_AC 2022.1.28

加入题单

算法标签: