记录编号 241828 评测结果 AAAAA
题目名称 DNA螺旋串 最终得分 100
用户昵称 GravatarSOBER GOOD BOY 是否通过 通过
代码语言 C++ 运行时间 0.013 s
提交时间 2016-03-26 09:11:27 内存使用 31.18 MiB
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
using namespace std;
int f[2010][2010]={0},a[2010][2015]={0};
void Print(int,int);
string s1,s2;
int main()
{
	freopen("lcsdna.in","r",stdin);
	freopen("lcsdna.out","w",stdout);
	cin>>s1>>s2;
	int len1=s1.length();
	int len2=s2.length();
	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;
				a[i][j]=0;
				continue;
			}
			else{
				if(f[i-1][j]>=f[i][j-1])
				{
					f[i][j]=f[i-1][j];
					a[i][j]=1;
					continue;
				}
				f[i][j]=f[i][j-1];
				a[i][j]=2;
			}
		}
	}
	cout<<f[len1][len2]<<endl;
	Print(len1,len2);
}
void Print(int i,int j)
{
	if(i==0||j==0) return;
	if(a[i][j]==0)
	{
		Print(i-1,j-1);
		cout<<s1[i-1];	
	}
	else{
		if(a[i][j]==1)
		{
			Print(i-1,j);
			
		}
		if(a[i][j]==2)
		{
			Print(i,j-1);
		}
	}
}