zoukankan      html  css  js  c++  java
  • 题解 GT考试

    题目传送门

    题目大意

    给出(n,m,k),以及一个长度为(m)的数字串(s_{1,2,...,m}),求有多少个长度为(n)的数字串(X)满足(s)不出现在其中的个数模(k)的答案。

    思路

    ( exttt{command-block})的博客看到这道题了,果然还是不会做,看了一下题解,确实自己技不如人。。。

    我们可以设(f[i][j])表示考虑到第(i)个数,匹配到(s)的第(j)位的方案数。可以得到一个非常显然的转移式:

    [f[i][j]=sum_{k=0}^{m-1} f[i][k]g[k][j] ]

    其中(g[k][j])表示(s)匹配到第(k)位,加一个数字匹配到第(j)位的方案数。

    不难看出最后的答案就是:

    [sum_{i=0}^{m-1}f[n][i] ]

    于是,我们的问题就是如何求出(g)了。我们发现这个可以( exttt{KMP})暴艹出来。于是,我们就可以用矩阵加速求出(f)了。

    时间复杂度为(Theta(m^3log n))

    ( exttt{Code})

    #include <bits/stdc++.h>
    using namespace std;
    
    #define Int register int
    #define MAXN 25
    
    template <typename T> inline void read (T &t){t = 0;char c = getchar();int f = 1;while (c < '0' || c > '9'){if (c == '-') f = -f;c = getchar();}while (c >= '0' && c <= '9'){t = (t << 3) + (t << 1) + c - '0';c = getchar();} t *= f;}
    template <typename T,typename ... Args> inline void read (T &t,Args&... args){read (t);read (args...);}
    template <typename T> inline void write (T x){if (x < 0){x = -x;putchar ('-');}if (x > 9) write (x / 10);putchar (x % 10 + '0');}
    
    int n,m,mod,fail[MAXN];char s[MAXN];
    int mul (int a,int b){return a * b % mod;}
    int dec (int a,int b){return a >= b ? a - b : a + mod - b;}
    int add (int a,int b){return a + b >= mod ? a + b - mod : a + b;}
    
    struct Matrix{
    	int val[MAXN][MAXN];
    	Matrix(){memset (val,0,sizeof (val));}
    	int* operator [] (int x){return val[x];}
    	Matrix operator * (const Matrix &p)const{
    		Matrix New;
    		for (Int i = 0;i < m;++ i) for (Int k = 0;k < m;++ k) for (Int j = 0;j < m;++ j) New[i][j] = add (New[i][j],mul (val[i][k],p.val[k][j]));
    		return New;			
    	}
    	Matrix operator ^ (int b){
    		Matrix res,a = *this;
    		for (Int i = 0;i < m;++ i) res[i][i] = 1;
    		for (;b;b >>= 1,a = a * a) if (b & 1) res = res * a;
    		return res;
    	} 
    }A;
    
    signed main(){
    	read (n,m,mod),scanf ("%s",s + 1);
    	for (Int i = 2,j = 0;i <= m;++ i){
    		while (j && s[j + 1] != s[i]) j = fail[j];
    		if (s[j + 1] == s[i]) ++ j;
    		fail[i] = j;
    	}
    	for (Int i = 0;i < m;++ i)
    		for (char c = '0';c <= '9';++ c){
    			int j = i;
    			while (j && s[j + 1] != c) j = fail[j];
    			if (s[j + 1] == c) ++ j;
    			++ A[i][j];
    		}
    	A = A ^ n;int sum = 0;
    	for (Int i = 0;i < m;++ i) sum = add (sum,A[0][i]);
    	write (sum),putchar ('
    '); 
    	return 0;
    }
    
  • 相关阅读:
    [探索][管理]《现在,发现你的优势》
    【成功智慧】010.依靠忍耐度过困难时期
    爱情五十九课,就差一句话
    VSS2005 托管 VS2010代码
    一个网站的金字塔战略
    【成功智慧】013.脚踏实地的去做,没有完不成的任务
    MU.Bread 麦卡优娜
    【成功智慧】012.要有耐心去等待成功的到来
    【成功智慧】009.要能够承受所发生的事情
    【成功智慧】014.一日复一日的度过难关
  • 原文地址:https://www.cnblogs.com/Dark-Romance/p/13386812.html
Copyright © 2011-2022 走看看