"巴卡斯杯" 中国大学生程序设计竞赛 - 女生专场
Posted 栀蓝
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了"巴卡斯杯" 中国大学生程序设计竞赛 - 女生专场相关的知识,希望对你有一定的参考价值。
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<cmath>
#include<queue>
#include<vector>
#include<map>
using namespace std;
typedef unsigned long long LL;
#define met(a,b) (memset(a,b,sizeof(a)))
const int INF = 1e9+7;
const int N = 2100;
const int MOD = 9973;
int dp[N][N];
int main()
{
char s1[N], s2[N], s[N*2];
while(scanf("%s%s%s", s1+1, s2+1, s+1)!=EOF)
{
int len1=strlen(s1+1), len2=strlen(s2+1), i, j;
int len = strlen(s+1);
///printf("%d %d %d\\n", len1, len2, len);
if(len1+len2!=len)
{
printf("No\\n");
continue;
}
met(dp, 0);
dp[0][0] = 1;
for(i=0; i<=len1; i++)
for(j=0; j<=len2; j++)
{
if(i==0 && j==0) continue;
if(s1[i]==s[i+j] && dp[i-1][j] && !dp[i][j])
dp[i][j] = dp[i-1][j];
if(s2[j]==s[i+j] && dp[i][j-1] && !dp[i][j])
dp[i][j] = dp[i][j-1];
}
/**
for(i=0; i<=len1; i++)
for(j=0; j<=len2; j++)
{
printf("%d%c", dp[i][j], j==len2?\'\\n\':\' \');
}
*/
if(dp[len1][len2]) printf("Yes\\n");
else printf("No\\n");
}
return 0;
}
以上是关于"巴卡斯杯" 中国大学生程序设计竞赛 - 女生专场的主要内容,如果未能解决你的问题,请参考以下文章
"字节跳动杯"2018中国大学生程序设计竞赛-女生专场 Solution