#P9365. [ICPC 2022 Xi'an R] Power of Two
[ICPC 2022 Xi'an R] Power of Two
题目描述
$$2 ^ {2 ^ {2 ^ {2 ^ {2 ^ {2 ^ {2 ^ {2 ^ {2 ^ {2}}}}}}}}} $$SolarPea likes blowing up PolarSea's blog by sending power tower of . As the tower is too high, the stack of the web page overflows. So the blog no longer works.
Now SolarPea has powers of two , bitwise AND operators, bitwise OR operators and bitwise XOR operators. It is guaranteed that .
Solarpea wants to construct an arithmetic expression with these numbers and operators. Formally, define and , where is a permutation of , which means we can rearrange to get , and is one of the three types of bitwise operators above. Then is the result of the expresstion.
The larger the expression, the more likely it is to make PolarSea's blog unable to work. SolarPea wants you to help him to find the largest and construct such an expression. If there are multiple solutions, output any of them.
You need to process test cases independently.
输入格式
The first line contains a single integer (), denoting the number of test cases.
For each test case, the first line contains four integers , , and (). The next line contains integers (), where .
It is guaranteed that the sum of over all test cases is no more than .
输出格式
For each test case, output three lines.
The first line contains a -string of length , representing the binary form of the largest .
The next line contains a single -indexed string of length , where represents the -th operator. Here, we denote AND as &
(ASCII 38), OR as |
(ASCII 124), and XOR as ^
(ASCII 94). You should guarantee that there is exactly AND operators, OR operators and XOR operators.
The third line contains integers , the -th of which representing the logarithm of with base . That is, is a permutaion of .
If there are multiple solutions, output any of them.
题目大意
题目描述
SolarPea 喜欢通过发送电力塔来炸毁 PolarSea 的博客 。由于塔太高,网页的堆栈溢出。所以博客已经不能用了。
现在 SolarPea 拥有两个 、 位 AND 运算符、 位 OR 运算符和 位 XOR 运算符的 次方。保证 。
Solarpea 希望使用这些数字和运算符构造一个算术表达式。正式地定义 和 ,其中 是 的排列,这意味着我们可以重新排列 来得到 ,而 是上述三种类型的按位运算符之一。那么 就是表达式的结果。
表达式越大,就越有可能使 PolarSea 的博客无法工作。SolarPea 希望你帮他找到最大的 并构造这样的表达式。如果有多个解决方案,则输出其中任何一个。
您需要独立处理 个测试用例。
输入格式
第一行包含一个整数 (),表示测试用例的数量。
对于每个测试用例,第一行包含四个整数 , , 和 ()。下一行包含 个整数 (),其中 。
保证所有测试用例的 之和不超过 。
输出格式
对于每个测试用例,输出 3 行。
第一行包含一个长度为 的 字符串,表示最大 的二进制形式。
下一行包含一个长度为 的 索引字符串 ,其中 表示第 个运算符。在这里,我们将 AND 表示为 &
(ASCII 38),OR 表示为 |
(ASCII 124),将 XOR 表示为 ^
(ASCII 94)。您应该保证正好有 AND 运算符、 OR 运算符和 XOR 运算符。
第三行包含 个整数 ,其中第 个代表 的对数,以 为底。也就是说, 是 的排列。
如果有多个解决方案,则输出其中任何一个。
输入输出样例
无
提示
来源:2022 ICPC 亚洲习安区域赛问题 H.
作者: Alex_Wei.
4
4 3 0 1
1 0 1 0
4 1 0 3
1 0 1 0
8 0 2 6
1 5 5 7 1 5 5 7
8 0 0 8
1 5 5 7 1 5 5 7
0010
&&^&
0 0 1 1
0011
^^&^
0 1 0 1
10100000
^^|^^^^|
1 5 5 7 1 5 5 7
00000000
^^^^^^^^
1 5 5 7 1 5 5 7
提示
Source: The 2022 ICPC Asia Xi'an Regional Contest Problem H.
Author: Alex_Wei.