给定字符串S, 求有多少长为$n$的字符串T, 使得S为T的子序列.

可以得到转移矩阵为

$\begin{equation}
A
=\begin{bmatrix}
25 & 0 & 0 &\cdots\ &0 &0\\
1 & 25 & 0 &\cdots\ &0 &0\\
0 & 1 & 25 & \cdots\ & 0 & 0\\
\vdots & \vdots & \vdots & \ddots & \vdots &\vdots\\
0 & 0 & 0 &\cdots\ &1& 26\\
\end{bmatrix}
\end{equation}$

设$|S|=m$, 答案就为$A^n$的$(m,0)$项, 也就是说答案只与$S$的长度有关, 但是用矩阵幂的话复杂度是$O(m^3logn)$显然过不去.

实际上我们可以直接设$f(n)$为长为$n$的字符串的答案, 不去维护匹配的状态.

可以得到$f(n) =   \begin{cases} 0,  & n< m \\26f(n-1)+25^{n-m}\binom{n-1}{m-1}, & n\ge m \end{cases}$

前一部分表示在前$n-1$位已经有子序列等于$S$的情形, 那么第$n$位可以任取值.

后一部分表示在第$n$位时第一次出现子序列等于$S$的情形, 那么枚举前$m-1$位在$T$中的第一次出现位置, 其余位置可以任取其余的$25$个值.

#include <iostream>
#include <sstream>
#include <algorithm>
#include <cstdio>
#include <math.h>
#include <set>
#include <map>
#include <queue>
#include <string>
#include <string.h>
#include <bitset>
#define REP(i,a,n) for(int i=a;i<=n;++i)
#define PER(i,a,n) for(int i=n;i>=a;--i)
#define hr putchar(10)
#define pb push_back
#define lc (o<<1)
#define rc (lc|1)
#define mid ((l+r)>>1)
#define ls lc,l,mid
#define rs rc,mid+1,r
#define x first
#define y second
#define io std::ios::sync_with_stdio(false)
#define endl '\n'
#define DB(a) ({REP(__i,1,n) cout<<a[__i]<<' ';hr;})
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
const int P = 1e9+7, P2 = 998244353, INF = 0x3f3f3f3f;
ll gcd(ll a,ll b) {return b?gcd(b,a%b):a;}
ll qpow(ll a,ll n) {ll r=1%P;for (a%=P;n;a=a*a%P,n>>=1)if(n&1)r=r*a%P;return r;}
ll inv(ll x){return x<=1?1:inv(P%x)*(P-P/x)%P;}
inline int rd() {int x=0;char p=getchar();while(p<'0'||p>'9')p=getchar();while(p>='0'&&p<='9')x=x*10+p-'0',p=getchar();return x;}
//head const int N = 1e5+10;
int t, clk;
char s[N];
vector<pii> g[N];
int ans[N], f[N];
ll p25[N], fac[N], ifac[N]; ll C(int n, int m) {
return fac[n]*ifac[n-m]%P*ifac[m]%P;
} int main() {
p25[0] = fac[0] = ifac[0] = 1;
REP(i,1,N-1) {
p25[i] = p25[i-1]*25%P;
fac[i] = fac[i-1]*i%P;
ifac[i] = inv(fac[i]);
}
scanf("%d%s", &t, s);
int now = strlen(s);
REP(i,1,t) {
int op, x;
scanf("%d", &op);
if (op==1) scanf("%s", s), now = strlen(s);
else scanf("%d", &x), g[now].pb(pii(x,++clk));
}
REP(i,1,N-1) if (g[i].size()) {
sort(g[i].begin(),g[i].end());
int sz = g[i].size(), now = 0;
while (now<sz&&g[i][now].x<i) ++now;
f[i-1] = 0;
REP(j,i,N-1) {
f[j] = (f[j-1]*26ll+C(j-1,i-1)*p25[j-i])%P;
while (now<sz&&g[i][now].x==j) ans[g[i][now++].y] = f[j];
if (now>=sz) break;
}
}
REP(i,1,clk) printf("%d\n",ans[i]);
}

最新文章

  1. python 处理视频输入输出
  2. 【转】MaxScript.Net接收本地端口的消息执行
  3. Pyqt Smtplib实现Qthread多线程发送邮件
  4. 黄页js-sdk开发总结分享
  5. iOS维码的生成和扫描
  6. iOS 虚拟机测试出现的相关问题
  7. JNA结构体参数传递,Java数组
  8. Flex显示麦克风当前音量
  9. css与div小结
  10. 功能:使用QQ号登陆,并加上微信和短信提醒,是否增量备份可选,阿里大鱼短信发送开发与测试,聚合数据(用JSON发短信,比较清楚)
  11. Windows NTService 后台框架封装
  12. Plugin For KanColleViewer – Provissy Tools V1.0
  13. Yolov3参数解释以及答疑
  14. 迅雷thunder://协议解密
  15. Java表达式转型规则
  16. 洛谷 P1106 删数问题
  17. HDU1548- A strange lift (BFS入门)
  18. Android Studio设置自定义字体
  19. Lua 正确的尾调用(proper tail call)
  20. Jmeter--正则表达式提取器

热门文章

  1. 关于Linux上面无法读取资源目录下文件的问题
  2. RxJava(一):响应式编程与Rx
  3. python中的break continue用法
  4. Linux: Block Port With IPtables
  5. HearthBuddy遇奥秘解决方法
  6. AB窗体互传参数本质
  7. python 牛顿迭代法
  8. 代理模式之Cglib代理
  9. Event事件与协程
  10. 小D课堂 - 新版本微服务springcloud+Docker教程_5-03 feign结合hystrix断路器开发实战上