Codeforces 163A Substring and Subsequence

Posted GFY

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 163A Substring and Subsequence相关的知识,希望对你有一定的参考价值。

http://codeforces.com/problemset/problem/163/A?mobile=true

题目大意:给出两个串,问a的连续子串和b的子串(可以不连续)相同的个数。

思路:在LCS上加点改动

 1 #include<cstdio>
 2 #include<cmath>
 3 #include<cstring>
 4 #include<algorithm>
 5 #include<iostream>
 6 const int Mod=1000000007;
 7 char a[500005],b[500005];
 8 int n,m,f[5005][5005];
 9 int read(){
10      int t=0,f=1;char ch=getchar();
11      while (ch<0||ch>9){if (ch==-) f=-1;ch=getchar();}
12      while (0<=ch&&ch<=9){t=t*10+ch-0;ch=getchar();}
13      return t*f;
14 }
15 int main(){
16      scanf("%s",a+1);n=strlen(a+1);
17      scanf("%s",b+1);m=strlen(b+1);
18      for (int i=1;i<=n;i++)
19         if (a[i]==b[1]) f[i][1]=1;
20      for (int i=1;i<=m;i++)
21         if (a[1]==b[i]) f[1][i]=1;
22     int ans=0;
23     for (int i=1;i<=n;i++){
24         for (int j=1;j<=m;j++){
25            f[i][j]=f[i][j-1];
26            if (a[i]==b[j])
27                 (f[i][j]+=f[i-1][j-1]+1)%=Mod;
28         }
29         ans=(ans+f[i][m])%Mod;
30     }
31     printf("%d\n",ans);    
32 }

 

以上是关于Codeforces 163A Substring and Subsequence的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces 919 D Substring

Codeforces 919 D. Substring (记忆化搜索)

Substring(Codeforces-D-拓扑排序)

CodeForces - 873B Balanced Substring(思维)

[Codeforces 873B]Balanced Substring

Codeforces 873B - Balanced Substring(思维)