CF464C.Substitutes in Number

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Andrew and Eugene are playing a game. Initially, Andrew has string ss , consisting of digits. Eugene sends Andrew multiple queries of type " ditid_{i}→t_{i} ", that means "replace all digits did_{i} in string ss with substrings equal to tit_{i} ". For example, if s=123123s=123123 , then query " 2002→00 " transforms ss to 1003100310031003 , and query " 33→ " ("replace 3 by an empty string") transforms it to s=1212s=1212 . After all the queries Eugene asks Andrew to find the remainder after division of number with decimal representation equal to ss by 1000000007 (109+7)1000000007 (10^{9}+7) . When you represent ss as a decimal number, please ignore the leading zeroes; also if ss is an empty string, then it's assumed that the number equals to zero.

Andrew got tired of processing Eugene's requests manually and he asked you to write a program for that. Help him!

输入格式

The first line contains string ss ( 1<=s<=1051<=|s|<=10^{5} ), consisting of digits — the string before processing all the requests.

The second line contains a single integer nn ( 0<=n<=1050<=n<=10^{5} ) — the number of queries.

The next nn lines contain the descriptions of the queries. The ii -th query is described by string " did_{i} -> tit_{i} ", where did_{i} is exactly one digit (from 0 to 9), tit_{i} is a string consisting of digits ( tit_{i} can be an empty string). The sum of lengths of tit_{i} for all queries doesn't exceed 10510^{5} . The queries are written in the order in which they need to be performed.

输出格式

Print a single integer — remainder of division of the resulting number by 1000000007 (109+7)1000000007 (10^{9}+7) .

输入输出样例

  • 输入#1

    123123
    1
    2-&gt;00
    

    输出#1

    10031003
    
  • 输入#2

    123123
    1
    3-&gt;
    

    输出#2

    1212
    
  • 输入#3

    222
    2
    2-&gt;0
    0-&gt;7
    

    输出#3

    777
    
  • 输入#4

    1000000008
    0
    

    输出#4

    1
    

说明/提示

Note that the leading zeroes are not removed from string ss after the replacement (you can see it in the third sample).

首页