VK Cup 2012 Round 2 A. Substring and Subsequence(DP)

题目链接
在这里插入图片描述
题意:给定两个串s1,s2,求s1的子串(连续)和s2的子序列(不连续)相同的个数
思路:dp[i][j]表示s1从[1,i]的子串和s2从[1,j]的子序列中相同的个数。

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn=5e3+5; 
const int mod=1e9+7; 
char s1[maxn],s2[maxn];
ll dp[maxn][maxn];
int main()
{
	scanf("%s",s1+1);
	scanf("%s",s2+1);
	int len1=strlen(s1+1),len2=strlen(s2+1);
	for(int i=1;i<=len1;++i)
	{
		for(int j=1;j<=len2;++j)
		{
			dp[i][j]=dp[i][j-1];
			if(s1[i]==s2[j]) dp[i][j]=(dp[i][j]+dp[i-1][j-1]+1)%mod;
		}
	}
	ll ans=0;
	for(int i=1;i<=len1;++i) ans=(ans+dp[i][len2])%mod;
	printf("%lld\n",ans);
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值