DNA sequence hdu-1560

亲测回溯要用矩阵可以省很多时间;

#include <cstdio>
#include <algorithm>
#include <cstring>
using namespace std;
int n;
char dir[4]={'A','G','C','T'};
struct str{
	char s[20];
	int pos;
	bool friend operator<(const str &a,const str &b){
		int len1=strlen(a.s),len2=strlen(b.s);
		if(len1!=len2)
			return len1>len2;
		return strcmp(a.s,b.s)<0;
	}
}a[20];
bool ida(int x,int depth){
	int tot=0,t=depth-x+1;;
	for(int i=1;i<=n;++i){
		if(a[i].pos==strlen(a[i].s))
			++tot;
		else if(a[i].pos+t<strlen(a[i].s))
			return false;
	}
	if(tot==n){
		printf("%d\n",depth);
		return true;
	}
	if(x>depth)
		return false;
		int tmp[10];
	for(int i=1;i<=n;++i){
		tmp[i]=a[i].pos;
	}
	for(int i=0;i<4;++i){
		bool ok=false;
		for(int j=1;j<=n;++j){
			if(a[j].s[a[j].pos]==dir[i]){
				++a[j].pos;
				ok=true;
			}
		}
		if(!ok)
			continue;
		if(ida(x+1,depth))
			return true;
		for(int j=1;j<=n;++j){
			a[j].pos=tmp[j];
		}
	}
	return false;
}
int main(){
	int T;scanf("%d",&T);
	while(T--){
		scanf("%d",&n);	
		for(int i=1;i<=n;++i){
			scanf("%s",a[i].s);
			a[i].pos=0;
		}
		sort(a+1,a+1+n);
		for(int i=strlen(a[1].s);1;++i){
			if(ida(1,i))
				break;
		}
	}
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值