Codeforces Round #265 (Div. 2)E(数位dp)

C. Substitutes in Number
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Andrew and Eugene are playing a game. Initially, Andrew has string s, consisting of digits. Eugene sends Andrew multiple queries of type "di → ti", that means "replace all digits di in string s with substrings equal to ti". For example, if s = 123123, then query "2 → 00" transforms s to 10031003, and query "3 → " ("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

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

The second line contains a single integer n (0 ≤ n ≤ 105) — the number of queries.

The next n lines contain the descriptions of the queries. The i-th query is described by string "di->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

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

Sample test(s)
input
123123
1
2->00
output
10031003
input
123123
1
3->
output
1212
input
222
2
2->0
0->7
output
777
input
1000000008
0
output
1
Note

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


题意:RT

思路:显然给出的每种转化关系前面的一定会被后面的覆盖,也就是说后面的信息才是准确的

            那么也就是说可以将这些关系式倒着搞,然后分别维护0-9这些数字的pow值和val值

            val代表这个数字的权重

            pow代表这个数字的位数的值

            比如2->123,初始pow[2]=10,val[2]=2

            经过这个关系式转换后变成,pow[2]=1000,val[2]=123

            处理完这些式子以后for一遍原串,用0-9这些数字的这两个值算出即可

#include 
   
   
    
    
#include 
    
    
     
     
#include 
     
     
      
      
#include 
      
      
       
       
#include 
       
       
         #include 
        
          using namespace std; #define maxn 400010 #define mod 1000000007 char s[maxn]; char qs[maxn]; int pw[11]; int val[11]; int b[maxn]; int n; vector 
         
           q[maxn]; typedef long long ll; inline void add(int &a,int b) { a+=b; if(a>=mod)a-=mod; } inline void mul(int &a,int b) { a= (ll)a*b % mod; } int main() { int i; while(scanf("%s",s)!=EOF) { scanf("%d",&n); for(i=0;i 
          
            =0;i--) { int d=b[i]; int l=q[i].size(); int ans=0; int ml=1; for(int j=0;j 
            
           
          
         
       
      
      
     
     
    
    
   
   
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值