传送门
题面:
DNA Sequence
Time Limit: 1000MS | Memory Limit: 65536K | |
Total Submissions: 19507 | Accepted: 7431 |
Description
It's well known that DNA Sequence is a sequence only contains A, C, T and G, and it's very useful to analyze a segment of DNA Sequence,For example, if a animal's DNA sequence contains segment ATC then it may mean that the animal may have a genetic disease. Until now scientists have found several those segments, the problem is how many kinds of DNA sequences of a species don't contain those segments.
Suppose that DNA sequences of a species is a sequence that consist of A, C, T and G,and the length of sequences is a given integer n.
Input
First line contains two integer m (0 <= m <= 10), n (1 <= n <=2000000000). Here, m is the number of genetic disease segment, and n is the length of sequences.
Next m lines each line contain a DNA genetic disease segment, and length of these segments is not larger than 10.
Output
An integer, the number of DNA sequences, mod 100000.
Sample Input
4 3
AT
AC
AG
AA
Sample Output
36
题意:
给你m个由‘A’','C','G','T'组成的模板字符串,问你长度为n的由上述4个字符组成的所有字符串中,有多少个字符串是不含有模板串的有多少个。
题目分析:
神题!!
首先,倘若这个问题中要组成的字符串的长度m比较小的话,题目的做法就类似bzoj1030,我们设dp[i][j]为当前长度为i的字符串处于Trie树中的第j号结点所具有的方案数,就可以通过转移方程dp[i][next[j][k]+=dp[i-1][j]求解。
但是在这个问题中,字符串的长度多达2e9,显然在这个长度下甚至连一个dp数组都开不下,显然用dp去做显然不太现实。因此我们考虑从图的角度审视这个问题。
我们分析之前所构造出的转移方程,dp[i+1][j]+=dp[i][next[j][k]],我们发现这个转移方程在Trie图上的表示为:结点j能够到达结点next[j][k],即两个结点在Trie图上是可达的。
而我们题目中所要求的长度为n的方案数,实质上等价于要求我们从Trie图的根节点开始转移,一直转移n次,且保证转移到的结点不是结尾字符所得到的方案数。
我们上面也谈到了,"能否转移"在Trie图上的表示为"是否可达",因此"能够转移的方案数"也即为"可达的方案数"。
因此,这个题的问题就被巧妙的转化成了:从Tire图的root结点出发,走n步且不经过结尾字符所能够达到的结点的个数。
而对于这个问题,在离散数学,我们可以知道:要求出一个图中第i个点与第j个点的可达关系,我们可以通过将这张图的邻接矩阵A求T次幂,求幂的结果即为第i个点走T步达到结点j的个数
因此上诉的问题就可以转化成一个矩阵的问题去用矩阵快速幂进行求解!因此我们只需要先构建出Trie图,并将Trie图的邻接矩阵A构造出来,最后通过矩阵快速幂求出即可!
代码:
//#include
#include
#include
#include
#include