hdu 6170 Two strings(dp)

本文介绍了一种特殊的字符串匹配算法,能够处理包含通配符'*'和'.'的模式串,其中'*'代表其前一个字符可出现任意次,'.'则能匹配任意字符。通过动态规划方法实现对两个字符串是否匹配的判断。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Two strings

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 1420    Accepted Submission(s): 583


Problem Description
Giving two strings and you should judge if they are matched.
The first string contains lowercase letters and uppercase letters.
The second string contains lowercase letters, uppercase letters, and special symbols: “.” and “*”.
. can match any letter, and * means the front character can appear any times. For example, “a.b” can match “acb” or “abb”, “a*” can match “a”, “aa” and even empty string. ( “*” will not appear in the front of the string, and there will not be two consecutive “*”.
 

Input
The first line contains an integer T implying the number of test cases. (T≤15)
For each test case, there are two lines implying the two strings (The length of the two strings is less than 2500).
 

Output
For each test case, print “yes” if the two strings are matched, otherwise print “no”.
 

Sample Input
3 aa a* abb a.* abb aab
 

Sample Output
yes yes no

 


题意;

看两个字符串能否匹配,*表示前面一个字符可以匹配多次,'.'表示匹配可以任意字符,问两个字符能否匹配


解析:

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
#define MAXN 3000

char T[MAXN],S[MAXN];
int dp[MAXN][MAXN];
int n,m;

int main()
{
	int t;
	scanf("%d",&t);
	while(t--)
	{
		scanf("%s",S+1);
		scanf("%s",T+1);
		n=strlen(S+1);
		m=strlen(T+1);
		memset(dp,0,sizeof(dp));
		dp[0][0]=1;
		for(int i=1;i<=m;i++)
		{
			if(T[i]=='*') dp[i][0]=1;  //例如ab,a*ab的情况,dp[2][0]就用于在匹配T[3]时dp[3][1]=dp[2][0],或ab,a*a*ab,dp[5][1]=dp[4][0],dp[3][1]=dp[2][0]
			for(int j=1;j<=n;j++)   //若i,j可以匹配,那么dp[i][j]由dp[i-1][j-1]匹配的情况决定,若i,j之前的0都能匹配那么dp[i][j]=1
			{                           //dp[i][j]表示在i,j之前的字符串都成功匹配
				if(T[i]=='.') dp[i][j]=dp[i-1][j-1];   
				else if(T[i]!='*') 
				{
					if(T[i]==S[j]) dp[i][j]=dp[i-1][j-1];
				}
				else
				{
					dp[i][j]=max(dp[i-1][j],dp[i-2][j]);   //dp[i-1][j]比较大表示*表示次数为1,dp[i-2][j]大表示*的次数为0
					if(dp[i][j-1]&&S[j]==S[j-1])   //T[i]=='*',*的次数>1的情况
					{
						if(T[i-1]=='.'||S[j]==T[i-1]) dp[i][j]=1;  //如果S[j]==T[i-1]('*'前的字符即重复的字符)
					}
				}
			}
		}

		if(dp[m][n]) printf("yes\n");
		else printf("no\n");
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值