记录编号 | 307366 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [NOIP 2015]子串 | 最终得分 | 100 | ||
用户昵称 | 是否通过 | 通过 | |||
代码语言 | C++ | 运行时间 | 0.290 s | ||
提交时间 | 2016-09-15 02:46:26 | 内存使用 | 0.99 MiB | ||
#include<cstdio> #include<iostream> #include<algorithm> #include<cstring> using namespace std; const int MOD=1e9+7; char a[1100],b[210]; int f[2][210][210],s[2][210][210]; int main() { freopen("2015substring.in","r",stdin); freopen("2015substring.out","w",stdout); int n,m,k; scanf("%d%d%d",&n,&m,&k); scanf("%s%s",a+1,b+1); s[0][0][0]=1; int now=1,last=0; for(int i=1;i<=n;i++){ s[now][0][0]=1; for(int j=1;j<=m;j++){ for(int k1=1;k1<=k;k1++){ if(a[i]==b[j]) f[now][j][k1]=(f[last][j-1][k1]+s[last][j-1][k1-1])%MOD; else f[now][j][k1]=0; s[now][j][k1]=(s[last][j][k1]+f[now][j][k1])%MOD; } } swap(now,last); } printf("%d",s[last][m][k]); return 0; }