eolymp
bolt
Try our new interface for solving problems
Problems

Circuits

Circuits

Consider a digital electric circuit operating with binary signals in a discrete time. It contains input signals, wires, junctions and logical gates. We will use six kinds of logical gates: NOT, AND, NAND, OR, NOR, DFF. Each of them returns one output signal. The amount of input signals and details about return value are showed in the following table.

  • NOT, 1 input. Opposite to the input signal value;
  • AND, 1 or more input. Conjunction of the input signal values;
  • NAND, 1 or more input. Negation of the conjunction of the input signal values;
  • OR, 1 or more input. Disjunction of the input signal values;
  • NOR, 1 or more input. Negation of the disjunction of the input signal values;
  • DFF, 1 input. Same as the input signal. Returned with the delay of one tick of discrete time;

The scheme will operate in the following manner. Before the first tick of the discret time each DFF gate is initialized with zero value. Then during certain amount of ticks several junctions (input junctions) will be feeded with input values. You are to write a program that will calculate binary values on a certain set of junctions (output junctions).

Your program will be given the description of the logical scheme, the set of junctions in which we are interested and the input values for each consecutive tick of the discrete time.

Input

The input consists of two blocks. First block contains several lines. If the first symbol of a line is a sharp (#), than the line contains a comment. You can ignore it. You can also ignore empty lines. A line describing the input signal looks like INPUT(junction), where junction is the name of the junction. A line describing the interesting junction looks like OUTPUT(junction), where junction is the name of the junction. A junction name consists of small and capital Latin letters and digits and the underline character ( _ ). The length of each name is less than 64 characters.

All other lines of the first block contain the description of new junctions. Such line can look like j1 = op(j2), where j1 and j2 are the names of junctions and op is either NOT or DFF. It can also look like j1 = op(j2[, j3...]), where j's are the junction names and op is AND, NAND, OR or NOR. There will be no more than 5000 junctions.

The second block of the input starts with the line INPUT VALUES. Each of the following lines contains a sequence of zeroes and ones. Amount of digits equals to the amount of input signals. You should match these binary values to the input signal values, in the order the input signals given. There are no more than 500 lines in this block. Please refer to the sample for the details.

You may assume that the input data is correct. You may assume that the given circuit will operate correctly.

Output

For each line of the input signal values, print one line containing zeroes and ones. The digits should correspond to the values of the output signals, preserving their order in the input.

Time limit 1 second
Memory limit 128 MiB
Input example #1
INPUT(a)
INPUT(b)
x = DFF(a)
t = OR(a, b)
y = AND(x, t)
OUTPUT(x)
OUTPUT(y)
INPUT VALUES
10
11
00
Output example #1
00
11
10
Input example #2
# 4 inputs
# 1 output
# 3 D-type flipflops
# 2 inverters
# 8 gates (1 AND+1 NAND+2 ORs+4 NORs)


INPUT(G0)
INPUT(G1)
INPUT(G2)
INPUT(G3)

OUTPUT(G17)

G5 = DFF(G10)
G6 = DFF(G11)
G7 = DFF(G13)

G14 = NOT(G0)
G17 = NOT(G11)

G8 = AND(G14, G6)

G15 = OR(G12, G8)
G16 = OR(G3, G8)

G9 = NAND(G16, G15)

G10 = NOR(G14, G11)
G11 = NOR(G5, G9)
G12 = NOR(G1, G7)
G13 = NOR(G2, G12)

INPUT VALUES
0000
0001
0010
0100
1000
1010
Output example #2
1
0
0
0
1
1
Source 2007 Петрозаводск, Saratov for Karelia with love, Январь 28, Задача E