|
|||||||
|
Assemler circuits
Bytetel Company decided to improve computers they produce.
They want to replace assembler programs with special systems
called assembler circuits. Assembler programs consist solely of
assignments. Each assignment is determined by four elements:
We assume that there are at most 26 registers.
They are represented by small letters of English alphabet.
There are at most 4 elementary operations and they are
represented by capital letters A, B, C, D.
There are gates inside a circuit. Each gate has two inputs and one output. The gate performs an elementary operation on data delivered on its inputs and passes the result to its output. Inputs of gates and outputs of the whole circuit are connected to outputs of other gates or inputs of the circuit. Outputs of gates and inputs of the circuit can be connected to many inputs of other gates or outputs of the circuit. Connections among gates cannot form cycles. An assembler circuit is equivalent to an assembler program if for any initial state of registers the final state of registers produced by the program and the circuit are the same. TaskWrite a program that:
InputIn the first line of the input file UKL.IN there is one integer n (1 <= n < 1000), which is the number of instructions in the program.
In the following n lines there are descriptions of consecutive instructions in the program. Each description is a four-letter word beginning with an elementary operation symbol: A,B,C or D. The second and the third letter (which are small letters of English alphabet) are names of registers, in which data are placed. The fourth letter is a name of a register, in which the result should be placed. OutputIn the first and only line of the output file UKL.OUT there should be written one integer, which is the minimal number of gates in an assembler circuit equivalent to the given program. Example
For the text file UKL.IN: 8 Afbc Bfbd Cddd Bcbc Afcc Afbf Cfbb Dfdb the correct answer is the output file UKL.OUT: 6 A circuit equivalent to the given program is shown in the figure. |