POJ - 1625 Censored!(AC自动机+dp+高精度运算)

题目链接:点击查看

题目大意:给出一个含有 n 个不同字符的字符集,接着规定所有单词的长度为 m ,再给出 k 个病毒串,问有多少个字符串中不含有病毒串

题目分析:这个题目和之前做过的DNA的那个题有些许相似,不同之处是:

  1. 字符集是题目给出的,而不是提前声明好的
  2. m非常小
  3. 没有取模

所以解决长度为 m 的字符串中不含有某些特定的字符串,我们可以直接建立AC自动机然后获得状态转移矩阵,因为字符集不是提前声明好的,以及m非常小,故我们可以考虑根据状态转移矩阵,动态规划迭代 m 次得到答案,同时没有取模,所以我们需要套一个大数模板配合,这个题目好像坑点比较多,感谢讨论区的各路大神给出的数据以及易错点,好像大数模板比较慢的话也会被卡TLE,所以用了kuangbin大大的模板,顺便保存了以后可能会用到

代码:

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
   
typedef long long LL;
  
typedef unsigned long long ull;
   
const int inf=0x3f3f3f3f;
   
const int N=1e5+100;

int n,m,k;
 
char s[110];

mapmp;
 
int fail[110],trie[110][60],maze[110][110],cnt;

bool vis[110];
 
void insert_word()
{
	int len=strlen(s);
	int pos=0;
	for(int i=0;iq;
	for(int i=0;i= 0;i -= DLEN)
        {
            int t = 0;
            int k = i - DLEN + 1;
            if(k < 0)k = 0;
            for(int j = k;j <= i;j++)
                t = t*10 + s[j] - '0';
            a[index++] = t;
        }
    }
    BigInt operator +(const BigInt &b)const
    {
        BigInt res;
        res.len = max(len,b.len);
        for(int i = 0;i <= res.len;i++)
            res.a[i] = 0;
        for(int i = 0;i < res.len;i++)
        {
            res.a[i] += ((i < len)?a[i]:0)+((i < b.len)?b.a[i]:0);
            res.a[i+1] += res.a[i]/mod;
            res.a[i] %= mod;
        }
        if(res.a[res.len] > 0)res.len++;
        return res;
    }
    BigInt operator *(const BigInt &b)const
    {
        BigInt res;
        for(int i = 0; i < len;i++)
        {
            int up = 0;
            for(int j = 0;j < b.len;j++)
            {
                int temp = a[i]*b.a[j] + res.a[i+j] + up;
                res.a[i+j] = temp%mod;
                up = temp/mod;
            }
            if(up != 0)
                res.a[i + b.len] = up;
        }
        res.len = len + b.len;
        while(res.a[res.len - 1] == 0 &&res.len > 1)res.len--;
        return res;
    }
    void output()
    {
        printf("%d",a[len-1]);
        for(int i = len-2;i >=0 ;i--)
            printf("%04d",a[i]);
        printf("\n");
    }
}dp[2][110];

int main()
{
//#ifndef ONLINE_JUDGE
//  freopen("input.txt","r",stdin);
//    freopen("output.txt","w",stdout);
//#endif
//  ios::sync_with_stdio(false);
	while(scanf("%d%d%d",&n,&m,&k)!=EOF)
	{
		init();
		while(k--)
		{
			gets(s);
			insert_word();
		}
		getfail();
		getmaze();
		int pos=0;//控制dp到哪一层了,取值为0或1即可完成转移 
		dp[pos][0]=1;
		for(int i=1;i<=cnt;i++)
			dp[pos][i]=0;
		while(m--)//迭代m次 
		{
			pos^=1;
			for(int i=0;i<=cnt;i++)
			{
				dp[pos][i]=0;
				for(int j=0;j<=cnt;j++)
					if(maze[j][i])
						dp[pos][i]=dp[pos][i]+dp[pos^1][j]*maze[j][i];
			}
		}
		BigInt ans=0;
		for(int i=0;i<=cnt;i++)
			ans=ans+dp[pos][i];
		ans.output();
	}
	
	
	
	
	
	
	
	

      
      
      
      
      
      
      
      
      
    return 0;
}

 

你可能感兴趣的:(字符串处理,动态规划,高精度运算)