eolymp
bolt
Попробуйте наш новый интерфейс для отправки задач

Worms

Biologists are studying a certain, interesting kind of worm. Each worm can be seen as a line of cells of different types. When a worm is born, it only consists of a single cell. Every day, exactly \textbf{1} cell of the entire worm will grow and change into \textbf{2} cells. It is rather easy to determine the age of any such worm, since it's simply one less than the number of cells the worm has. During a worm's growth, a cell does not change into any 2 arbitrary cells; each worm has a set of "growth rules" (encoded in its DNA) that it obeys. A growth rule can be expressed as \textbf{A} => \textbf{BC}, where \textbf{A}, \textbf{B} and \textbf{C} are uppercase letters (with letters \textbf{A}-\textbf{T}), representing different types of the worm's cells. The rule \textbf{A} => \textbf{BC} means that in one day, any single cell \textbf{A} can be grown into the \textbf{2} adjacent cells \textbf{BC}, in that order. Note that the rule \textbf{I} => \textbf{JK} is different from the rule \textbf{I} => \textbf{KJ}. Different worms may have a different set of growth rules. The worms have now thrown the scientists for a loop. Due to some unknown reason, some worms have mutated into a new kind of specimen. This new kind of worm has the exact same properties, except that during its growth, multiple parts of its body can grow at the same time. That is, every day any (at least one, at most all) of its cells can grow; each cell that grows will grow into exactly \textbf{2} cells (obeying growth rules similar to their older cousins). As a result of the mutation, it is no longer trivial to determine the age of a worm. In fact, the exact age of some worms cannot be determined. As a simple example, if a worm has growth rules: \textbf{A} => \textbf{BC}, \textbf{B} => \textbf{AC}, \textbf{C} => \textbf{AB}, and the worm's current cell structure is \textbf{ACAB}, the worm can be either \textbf{2} or \textbf{3} days old (\textbf{A} => \textbf{BC} => \textbf{ACAB}, or \textbf{A} => \textbf{BC} => \textbf{ACC} => \textbf{ACAB}). Your task is to find out the youngest possible age of any given mutated worm. \InputFile There will be multiple worms for examination in the input. Each worm's data set begins with an integer \textbf{N} (\textbf{1} <= \textbf{N} <= \textbf{80}), the number of growth rules. The next \textbf{N} lines each contain \textbf{3} uppercase letters (with letters \textbf{A}-\textbf{T}), representing a growth rule for the current worm. The 1st cell can grow into (and be replaced by) the \textbf{2}nd and \textbf{3}rd cells, in order, during the growth process. That is, the line: \textbf{ABC} means \textbf{A} => \textbf{BC} is a growth rule for the current worm. The next (and last) line of each worm's data set contains a string of uppercase letters (with letters \textbf{A}-\textbf{T}). This line represents the current cell structure of the worm. Every worm in the input will have at least 1 and at most \textbf{50} cells. The last worm will be followed by a line with a single \textbf{0}. \OutputFile For each worm, if the worm can be grown into the given cell sequence with the given growth rule set (starting with any arbitrary single cell), then print the minimum age, in days, of the worm, as an integer on its own line. If the worm cannot be grown into the given cell sequence with the given rule set (starting with any arbitrary single cell), then simply print the number '\textbf{-1}' on its own line. Print no blank lines between outputs.
Лимит времени 3 секунды
Лимит использования памяти 64 MiB
Входные данные #1
3
ABC
BAC
CAB
ACAB
1
AAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
2
PAA
AAA
AAAAAAAAAAAAAAAP
1
BAB
AAAAAAB
0
Выходные данные #1
2
6
-1
6