Hide

Problem A
Cheating a Boolean Tree

For this problem we will consider a type of binary tree that we will call a boolean tree. In this tree, every row is completely filled, except possibly the last (deepest) row, and the nodes in the last row are as far to the left as possible. Additionally, every node in the tree will either have 0 or 2 children.

What makes a boolean tree special is that each node has a boolean value associated with it, 1 or 0. In addition, each interior node has either an "AND" or an "OR" gate associated with it. The value of an "AND" gate node is given by the logical AND of its two children’s values. The value of an "OR" gate likewise is given by the logical OR of its two children’s values. The value of all of the leaf nodes will be given as input so that the value of all nodes can be calculated up the tree.

The root of the tree is of particular interest to us. We would really like for the root to have the value $V$, either 1 or 0. Unfortunately, this may not be the value the root actually has. Luckily for us, we can cheat and change the type of gate for some of the nodes; we can change an AND gate to an OR gate or an OR gate to an AND gate.

Given a description of a boolean tree and what gates can be changed, find the minimum number of gates that need to be changed to make the value of the root node V. If this is impossible, output "IMPOSSIBLE" (quotes for clarity).

Input

The first line of the input file contains the number of cases, $1< N \leq 20$. $N$ test cases follow.

Each case begins with $M$ and $V$. $M$ represents the number of nodes in the tree, $2 < M < 10\, 000$ and $M$ will be odd to ensure all nodes have 0 or 2 children. $V$ is the desired value for the root node, 0 or 1.

$M$ lines follow describing each of the tree’s nodes. The $X$th line will describe node $X$, starting with node 1 on the first line.

The first $(M-1)/2$ lines describe the interior nodes. Each line contains $G$ and $C$, each being either 0 or 1. If $G$ is 1 then the gate for this node is an AND gate, otherwise it is an OR gate. If $C$ is 1 then the gate for this node is changeable, otherwise it is not. Interior node $X$ has nodes $2X$ and $2X+1$ as children.

The next $(M+1)/2$ lines describe the leaf nodes. Each line contains one value $I$, 0 or 1, the value of the leaf node.

\includegraphics{tree.png}
Figure 1: Picture of the tree in the first sample input

Output

For each test case, you should output:

Case #X: Y

where $X$ is the number of the test case and $Y$ is the minimum number of gates that must be changed to make the output of the root node $V$, or "IMPOSSIBLE" (quotes for clarity) if this is impossible.

Sample Input 1 Sample Output 1
2
9 1
1 0
1 1
1 1
0 0
1
0
1
0
1
5 0
1 1
0 0
1
1
0
Case #1: 1
Case #2: IMPOSSIBLE

Please log in to submit a solution to this problem

Log in