codeforces 464C. Substitutes in Number

题目链接

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).

给一个字符串, m个操作, 每次操作, 将其中的一个数变为一个字符串, 问最后的字符串%1e9+7的结果。

 1 #include <iostream>
 2 #include <vector>
 3 #include <cstdio>
 4 #include <cstring>
 5 #include <algorithm>
 6 #include <cmath>
 7 #include <map>
 8 #include <set>
 9 #include <string>
10 #include <queue>
11 #include <stack>
12 #include <bitset>
13 using namespace std;
14 #define pb(x) push_back(x)
15 #define ll long long
16 #define mk(x, y) make_pair(x, y)
17 #define lson l, m, rt<<1
18 #define mem(a) memset(a, 0, sizeof(a))
19 #define rson m+1, r, rt<<1|1
20 #define mem1(a) memset(a, -1, sizeof(a))
21 #define mem2(a) memset(a, 0x3f, sizeof(a))
22 #define rep(i, n, a) for(int i = a; i<n; i++)
23 #define fi first
24 #define se second
25 typedef pair<int, int> pll;
26 const double PI = acos(-1.0);
27 const double eps = 1e-8;
28 const int mod = 1e9+7;
29 const int inf = 1061109567;
30 const int dir[][2] = { {-1, 0}, {1, 0}, {0, -1}, {0, 1} };
31 const int maxn = 1e5+5;
32 ll val[10], Pow[10];
33 int d[maxn];
34 char c[maxn];
35 string s[maxn], str;
36 int main()
37 {
38     cin>>str;
39     int n;
40     scanf("%d", &n);
41     for(int i = 0; i<n; i++) {
42         scanf("%d->", &d[i]);
43         gets(c);
44         s[i] = c;
45     }
46     for(int i = 0; i<10; i++) {
47         val[i] = i;
48         Pow[i] = 10;
49     }
50     for(int i = n-1; i>=0; i--) {      //这里倒着做...
51         ll p = 1, v = 0;
52         int len = s[i].size();
53         for(int j = 0; j<len; j++) {
54             int tmp = s[i][j]-'0';
55             p = p*Pow[tmp]%mod;
56             v = v*Pow[tmp]%mod;
57             v = (v+val[tmp])%mod;
58         }
59         val[d[i]] = v;
60         Pow[d[i]] = p;
61     }
62     int len = str.size();
63     ll ans = 0;
64     for(int i = 0; i<len; i++) {
65         ans = (ans*Pow[str[i]-'0']%mod+val[str[i]-'0'])%mod;
66     }
67     printf("%d
", ans);
68     return 0;
69 }
原文地址:https://www.cnblogs.com/yohaha/p/5099888.html