#Lutece0491. Tricks in Bits
Tricks in Bits
Migrated from Lutece 491 Tricks in Bits
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Given unsigned -bit integers, you can bitwise NOT
each or not. Then you need to add operations selected from bitwise XOR
, bitwise OR
and bitwise AND
, between any two successive integers and calculate the result. Your job is to make the result as small as possible.
Input
The first line of the input is (no more than ), which stands for the number of test cases you need to solve.
Then blocks follow. The first line of each block contains a single number () indicating the number of unsigned -bit integers. Then integers follow in the next line.
Output
For every test case, you should output Case #k:
first, where indicates the case number and counts from . Then output the answer.
Samples
2
3
1 2 3
2
3 6
Case #1: 0
Case #2: 1
Note
- Case #:
1|2^3 = 0
- Case #:
3&(~6) = 1
The bitwise NOT
, is a unary operation that performs logical negation on each bit, forming the ones' complement of the given binary value. Digits which were become , and vice versa.
The bitwise OR
takes two bit patterns of equal length, and produces another one of the same length by matching up corresponding bits (the first of each; the second of each; and so on) and performing the logical inclusive or operation on each pair of corresponding bits. In each pair, the result is if the first bit is or the second bit is or both bits are ; otherwise, the result is .
The bitwise XOR
takes two bit patterns of equal length and performs the logical XOR
operation on each pair of corresponding bits. The result in each position is if the two bits are different, and if they are the same.
Resources
Sichuan State Programming Contest 2011