记录编号 241833 评测结果 AAAAA
题目名称 DNA螺旋串 最终得分 100
用户昵称 Gravatar【离开·再见】星裔·自由蒂兰 是否通过 通过
代码语言 C++ 运行时间 0.005 s
提交时间 2016-03-26 09:13:13 内存使用 8.08 MiB
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=1010;
void Print(int,int);
int len1,len2,f[maxn][maxn],b[maxn][maxn];
char s1[maxn],s2[maxn];
int main()
{
	freopen("lcsdna.in","r",stdin);
	freopen("lcsdna.out","w",stdout);
	scanf("%[A-Z]",s1);
	scanf("%*[^A-Z]");
	scanf("%[A-Z]",s2);
	len1=strlen(s1);
	len2=strlen(s2);
	for(int i=1;i<=len1;i++)
	{
		for(int j=1;j<=len2;j++)
		{
			if(s1[i-1]==s2[j-1])
			{
				f[i][j]=f[i-1][j-1]+1;
				b[i][j]=0;
			}
			else 
			{
				if(f[i-1][j]<f[i][j-1])
				{
					f[i][j]=f[i][j-1];
					b[i][j]=2;
				}
				else 
				{
					f[i][j]=f[i-1][j];
					b[i][j]=1;
				}
			}
		}
	}
	printf("%d\n",f[len1][len2]);
	Print(len1,len2);
	return 0;
}
void Print(int i,int j)
{
	if(i==0||j==0)return;
	if(b[i][j]==0)
	{
		Print(i-1,j-1);
		printf("%c",s1[i-1]);
	}
	else 
	{
		if(b[i][j]==1)Print(i-1,j);
		else Print(i,j-1);
	}
}