The DNA sequence for every living creature in Berland can be represented as a non-empty line consisting of lowercase Latin letters. Berland scientists found out that all the creatures evolve by stages. During one stage exactly one symbol of the DNA line is replaced by exactly two other ones. At that overall there are n permissible substitutions. The substitution a i - b i c i means that any one symbol a i can be replaced with two symbols b i c i . Every substitution could happen an unlimited number of times. They say that two creatures with DNA sequences s 1 and s 2 can have a common ancestor if there exists such a DNA sequence s 3 that throughout evolution it can result in s 1 and s 2 , perhaps after a different number of stages. Your task is to find out by the given s 1 and s 2 whether the creatures possessing such DNA sequences can have a common ancestor. If the answer is positive, you have to find the length of the shortest sequence of the common ancestor’s DNA.
输入描述:
The first line contains a non-empty DNA sequence s1, the second line contains a non-empty DNA sequence s2. The lengths of these lines do not exceed 50, the lines contain only lowercase Latin letters. The third line contains an integer n (0 ≤ n ≤ 50) — the number of permissible substitutions. Then follow n lines each of which describes a substitution in the format ai-bici. The characters ai, bi, and ci are lowercase Latin letters. Lines s1 and s2 can coincide, the list of substitutions can contain similar substitutions.
输出描述:
If s1 and s2 cannot have a common ancestor, print -1. Otherwise print the length of the shortest sequence s3, from which s1 and s2 could have evolved.
示例1
输入
ababa<br />aba<br />2<br />c->ba<br />c->cc<br />ababa<br />aba<br />7<br />c->ba<br />c->cc<br />e->ab<br />z->ea<br />b->ba<br />d->dd<br />d->ab<br />ababa<br />aba<br />1<br />c->ba<br />
加载中...