CF49E.Common ancestor

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 nn permissible substitutions. The substitution aia_{i} -> bicib_{i}c_{i} means that any one symbol aia_{i} can be replaced with two symbols bicib_{i}c_{i} . Every substitution could happen an unlimited number of times.

They say that two creatures with DNA sequences s1s_{1} and s2s_{2} can have a common ancestor if there exists such a DNA sequence s3s_{3} that throughout evolution it can result in s1s_{1} and s2s_{2} , perhaps after a different number of stages. Your task is to find out by the given s1s_{1} and s2s_{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 s1s_{1} , the second line contains a non-empty DNA sequence s2s_{2} . The lengths of these lines do not exceed 50, the lines contain only lowercase Latin letters. The third line contains an integer nn ( 0<=n<=500<=n<=50 ) — the number of permissible substitutions. Then follow nn lines each of which describes a substitution in the format aia_{i} -> bicib_{i}c_{i} . The characters aia_{i} , bib_{i} , and cic_{i} are lowercase Latin letters. Lines s1s_{1} and s2s_{2} can coincide, the list of substitutions can contain similar substitutions.

输出格式

If s1s_{1} and s2s_{2} cannot have a common ancestor, print -1. Otherwise print the length of the shortest sequence s3s_{3} , from which s1s_{1} and s2s_{2} could have evolved.

输入输出样例

  • 输入#1

    ababa
    aba
    2
    c->ba
    c->cc
    

    输出#1

    2
    
  • 输入#2

    ababa
    aba
    7
    c->ba
    c->cc
    e->ab
    z->ea
    b->ba
    d->dd
    d->ab
    

    输出#2

    1
    
  • 输入#3

    ababa
    aba
    1
    c->ba
    

    输出#3

    -1
    
首页