uva 1401

Neal is very curious about combinatorial problems, and now here comes a problem about words. Knowing
that Ray has a photographic memory and this may not trouble him, Neal gives it to Jiejie.
Since Jiejie can't remember numbers clearly, he just uses sticks to help himself. Allowing for Jiejie's only
20071027 sticks, he can only record the remainders of the numbers divided by total amount of sticks.
The problem is as follows: a word needs to be divided into small pieces in such a way that each piece is from
some given set of words. Given a word and the set of words, Jiejie should calculate the number of ways the
given word can be divided, using the words in the set.
Input
The input file contains multiple test cases. For each test case: the first line contains the given word whose
length is no more than 300 000.
The second line contains an integer S , 1 S 4000 .
Each of the following S lines contains one word from the set. Each word will be at most 100 characters long.
There will be no two identical words and all letters in the words will be lowercase.
There is a blank line between consecutive test cases.
You should proceed to the end of file.
Output
For each test case, output the number, as described above, from the task description modulo 20071027.
Sample Input
abcd
4
a
b
cd
ab
Sample Output
Case 1: 2
Nanjing 2007-2008
3942 - Remember

 

dp[i] = sum(dp[i + len))

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <algorithm>
 5 #include <vector>
 6 
 7 using namespace std;
 8 
 9 const int MAX = 3e5 + 7;
10 const int MOD = 20071027;
11 const int maxnode =  4000 * 100 + 8;
12 int ch[maxnode][26];
13 int val[maxnode];
14 int sz;
15 int idx(char c) { return c - 'a';}
16 
17 void insert(char *s, int v) {
18     int u = 0, n = strlen(s);
19     for (int i = 0; i < n ; ++i) {
20         int c = idx(s[i]);
21         if (!ch[u][c]) {
22             memset(ch[sz], 0, sizeof(ch[sz]));
23             val[sz] = 0;
24             ch[u][c] = sz++;
25         }
26         u = ch[u][c];
27     }
28 
29     val[u] = v;
30 }
31 
32 
33 char str[MAX];
34 int s;
35 int dp[MAX];
36 
37 void solve(int ca) {
38     memset(dp, 0, sizeof(dp));
39     int n = strlen(str);
40     dp[n] = 1;
41     for (int i = n - 1; i >= 0; --i) {
42         int u = 0;
43         for (int j = i; j < n; ++j) {
44             if (ch[u][ idx(str[j]) ]) {
45                 if (val[ ch[u][ idx(str[j]) ] ] == 1) dp[i] = (dp[i] + dp[j + 1]) % MOD;
46                 u = ch[u][ idx(str[j]) ];
47             } else {
48                 break;
49             }
50         }
51     }
52 
53     printf("Case %d: %d\n", ca, dp[0]);
54 }
55 
56 int main()
57 {
58    // freopen("sw.in", "r", stdin);
59     int ca = 1;
60     while (scanf("%s", str) != EOF) {
61         scanf("%d", &s);
62         sz = 1;
63         memset(ch[0], 0, sizeof(ch[0]));
64         char ss[105];
65         for (int i = 0; i < s; ++i) {
66             scanf("%s", ss);
67             insert(ss, 1);
68         }
69 
70         solve(ca++);
71 
72 
73     }
74     //cout << "Hello world!" << endl;
75     return 0;
76 }
View Code

 

转载于:https://www.cnblogs.com/hyxsolitude/p/3910226.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值