3075.Substitutes in Number

Time Limit: 1s Memory Limit: 256MB

Andrew and Eugene are playing a game. Initially, Andrew has string s, consisting of digits. Eugene sends Andrew multiple queries of type "di \rightarrow ti", that means "replace all digits di in string s with substrings equal to ti". For example, if s=123123, then query "2 \rightarrow 00" transforms s to 10031003, and query "3 \rightarrow " ("replace 3 by an empty string") transforms it to s=1212. After all the queries Eugene asks Andrew to find the remainder after division of number with decimal representation equal to s by 1000000007(109+7). When you represent s as a decimal number, please ignore the leading zeroes; also if s 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!

Input Format(From the terminal/stdin)

The first line contains string s (1 \le |s| \le 105), consisting of digits- the string before processing all the requests.

The second line contains a single integer n (0 \le n \le 105)- the number of queries.

The next n lines contain the descriptions of the queries. The i-th query is described by string "di \rightarrow ti", where di is exactly one digit (from 0 to 9), ti is a string consisting of digits (ti can be an empty string). The sum of lengths of ti for all queries doesn't exceed 105. The queries are written in the order in which they need to be performed.

Output Format(To the terminal/stdout)

Print a single integer - remainder of division of the resulting number by 1000000007(109+7).

Sample Input 1

Copy
123123
1
2 \rightarrow 00
      \n
 \n
 ·           ·  \n

Sample Output 1

Copy
10031003
        \n

Sample Input 2

Copy
123123
1
3 \rightarrow 
      \n
 \n
 ·           \n

Sample Output 2

Copy
1212
    \n

Sample Input 3

Copy
222
2
2 \rightarrow 0
0 \rightarrow 7
   \n
 \n
 ·           · \n
 ·           · \n

Sample Output 3

Copy
777
   \n

Sample Input 4

Copy
1000000008
0
          \n
 \n

Sample Output 4

Copy
1
 \n

Hints

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

Submit

请先 登录

© 2025 FAQs