310708: CF1874B. Jellyfish and Math
Description
Jellyfish is given the non-negative integers $a$, $b$, $c$, $d$ and $m$. Initially $(x,y)=(a,b)$. Jellyfish wants to do several operations so that $(x,y)=(c,d)$.
For each operation, she can do one of the following:
- $x := x\,\&\,y$,
- $x := x\,|\,y$,
- $y := x \oplus y$,
- $y := y \oplus m$.
Here $\&$ denotes the bitwise AND operation, $|$ denotes the bitwise OR operation and $\oplus$ denotes the bitwise XOR operation.
Now Jellyfish asks you for the minimum number of operations such that $(x,y)=(c,d)$.
InputEach test contains multiple test cases. The first line contains the number of test cases $t$ ($1 \leq t \leq 10^5$). The description of the test cases follows.
The only line of each test case contains five integers, $a$, $b$, $c$, $d$ and $m$ ($0 \leq a, b, c, d, m < 2^{30}$).
OutputFor each test case, output a single integer — the minimum number of operations. If this cannot be achieved, output $-1$ instead.
ExampleInput10 1 0 1 1 1 3 3 1 2 1 1 6 0 7 1 2 4 4 9 8 21 4 0 17 28 50 50 0 0 39 95 33 1 33 110 138 202 174 64 108 78 340 68 340 461 457 291 491 566 766Output
1 -1 2 -1 -1 2 1 4 1 3Note
In the first test case, we can do the operation $y = x \oplus y$.
In the second test case, it is not possible to change $(x,y)=(1,2)$ using any sequence of operations.
In the third test case, we can do the operation $x = x\,\&\,y$ followed by the operation $y = y \oplus m$.
Output
海蜇得到了非负整数 $ a $, $ b $, $ c $, $ d $ 和 $ m $。初始时 $ (x,y)=(a,b) $。海蜇想要进行几次操作,使得 $ (x,y)=(c,d) $。
每次操作,她可以进行以下之一:
1. $ x := x\,\&\,y $ (按位与操作)
2. $ x := x\,|\,y $ (按位或操作)
3. $ y := x \oplus y $ (按位异或操作)
4. $ y := y \oplus m $ (按位异或操作)
现在海蜇要求你计算最少需要多少次操作才能使 $ (x,y)=(c,d) $。如果不能实现,则输出 -1。
**输入数据格式:**
每个测试包含多个测试用例。第一行包含测试用例的数量 $ t $ ($ 1 \leq t \leq 10^5 $)。接下来是每个测试用例的描述。
每个测试用例仅包含一行,有五个整数,$ a $, $ b $, $ c $, $ d $ 和 $ m $ ($ 0 \leq a, b, c, d, m < 2^{30} $)。
**输出数据格式:**
对于每个测试用例,输出一个整数——所需的最少操作次数。如果不能实现,则输出 -1。
**示例:**
输入:
```
10
1 0 1 1 1
3 3 1 2 1
1 6 0 7 1
2 4 4 9 8
21 4 0 17 28
50 50 0 0 39
95 33 1 33 110
138 202 174 64 108
78 340 68 340 461
457 291 491 566 766
```
输出:
```
1
-1
2
-1
-1
2
1
4
1
3
```**题目大意:** 海蜇得到了非负整数 $ a $, $ b $, $ c $, $ d $ 和 $ m $。初始时 $ (x,y)=(a,b) $。海蜇想要进行几次操作,使得 $ (x,y)=(c,d) $。 每次操作,她可以进行以下之一: 1. $ x := x\,\&\,y $ (按位与操作) 2. $ x := x\,|\,y $ (按位或操作) 3. $ y := x \oplus y $ (按位异或操作) 4. $ y := y \oplus m $ (按位异或操作) 现在海蜇要求你计算最少需要多少次操作才能使 $ (x,y)=(c,d) $。如果不能实现,则输出 -1。 **输入数据格式:** 每个测试包含多个测试用例。第一行包含测试用例的数量 $ t $ ($ 1 \leq t \leq 10^5 $)。接下来是每个测试用例的描述。 每个测试用例仅包含一行,有五个整数,$ a $, $ b $, $ c $, $ d $ 和 $ m $ ($ 0 \leq a, b, c, d, m < 2^{30} $)。 **输出数据格式:** 对于每个测试用例,输出一个整数——所需的最少操作次数。如果不能实现,则输出 -1。 **示例:** 输入: ``` 10 1 0 1 1 1 3 3 1 2 1 1 6 0 7 1 2 4 4 9 8 21 4 0 17 28 50 50 0 0 39 95 33 1 33 110 138 202 174 64 108 78 340 68 340 461 457 291 491 566 766 ``` 输出: ``` 1 -1 2 -1 -1 2 1 4 1 3 ```