记录编号 241832 评测结果 AAAAA
题目名称 DNA螺旋串 最终得分 100
用户昵称 GravatarNewBee 是否通过 通过
代码语言 C++ 运行时间 0.080 s
提交时间 2016-03-26 09:13:00 内存使用 23.43 MiB
显示代码纯文本
#include<cstdlib>
#include<cstdio>
#include<cstring>
#include<iostream>

//designed by New_Beeؼ
using namespace std;

const int maxn=2010;
char s1[maxn]={'\0'},s2[maxn]={'\0'}; 
short a[maxn][maxn]={0};
int f[maxn][maxn];
int m=0;
void chul();
void find(int,int);
int getmax(int,int);

int main()
{
	freopen("lcsdna.in","r",stdin);
	freopen("lcsdna.out","w",stdout);
	
	chul();
}

void chul()
{
	memset(f,0,sizeof(f));
	
	scanf("%s%s",s1,s2);
	
	int len1=strlen(s1);
	int len2=strlen(s2);
	//printf("%d %d",len1,len2);
	
	
	//int m=0;
	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]=1;
				/*if(m==f[i][j]-1)
				{
					
				}*/
			}
			else 
			{
				f[i][j]=getmax(f[i-1][j],f[i][j-1]);
				if(f[i][j]==f[i-1][j])a[i][j]=2;
				else a[i][j]=3;
			}
		}
	}
	
	
	//printf("%d %d",len1,len2);
	printf("%d\n",f[len1][len2]);find(len1,len2);
}

void find(int i,int j)
{//printf("%d %d\n",i,j);
	if(i==0||j==0)return;
	if(a[i][j]==1)
	{
		find(i-1,j-1);
		m++;
		cout<<s1[i-1];
	}
	else if(a[i][j]==2)find(i-1,j);
	else find(i,j-1);
}

int getmax(int x,int y)
{
	if(x>y)return x;
	return y;
}