uvalive3942(字典树)

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$ \le$S$ \le$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.


定义d[i]表示i到L(L是给出的s的长度)的分解个数,然后d[i]=sum{d[i+len(x)]},用x的时候在trie里面查找就好了


#include<set>
#include<queue>
#include<cmath>
#include<cstdio>
#include<vector>
#include<string>
#include<utility>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<functional>
#define Inf (1<<30)
#define LL long long
#define MOD 20071027
#pragma comment(linker, "/STACK:102400000,102400000")
using namespace std;
char s[300010];
int dp[4000010][26],cnt;
LL d[410000],val[4000010];
void insert(char *str)
{
    int L=strlen(str),u=0;
    for(int i=0;i<L;i++)
    {
        int in=str[i]-'a';
        if(dp[u][in]==-1)
        {
            dp[u][in]=cnt;
            u=cnt++;
        }
        else u=dp[u][in];
        if(i==L-1)val[u]++;
    }
}
LL query(char *str,int L,int x)
{
    int u=0;
    LL ans=0;
    L=min(101,L);
    for(int i=0;i<L;i++)
    {
        int in=str[i]-'a';
        if(dp[u][in]==-1)break;
        else if(val[dp[u][in]])ans=(ans+d[x+i+1])%MOD;
        u=dp[u][in];
    }
    return ans;
}
int main()
{
    int T,o=1;
    int n,m;
    //freopen("D:\\oo.txt","r",stdin);
    while(~scanf("%s",s))
    {
        cnt=1;
        scanf("%d",&n);
        memset(dp,-1,sizeof(dp));
        memset(val,0,sizeof(val));
        for(int i=0;i<n;i++)
        {
            char str[110];
            scanf("%s",str);
            insert(str);
        }
        int L=strlen(s);
        d[L]=1;
        for(int i=L-1;i>=0;i--)
            d[i]=query(s+i,L-i,i);
        printf("Case %d: %lld\n",o++,(d[0]%MOD+MOD)%MOD);
    }
    return 0;
}


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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值