hdu DNA sequence 迭代加深搜索 已知n个字符串,求最小字符串使得这n个字符串是其子集

本文介绍了一个生物信息学问题,即如何从多个DNA序列中构造出最短的超级序列,使得每个给定的DNA序列都是其子序列。文章提供了一种通过深度优先搜索实现的解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

DNA sequence

Time Limit: 15000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 260    Accepted Submission(s): 114

Problem Description
The twenty-first century is a biology-technology developing century. We know that a gene is made of DNA. The nucleotide bases from which DNA is built are A(adenine), C(cytosine), G(guanine), and T(thymine). Finding the longest common subsequence between DNA/Protein sequences is one of the basic problems in modern computational molecular biology. But this problem is a little different. Given several DNA sequences, you are asked to make a shortest sequence from them so that each of the given sequence is the subsequence of it.

For example, given "ACGT","ATGC","CGTT" and "CAGT", you can make a sequence in the following way. It is the shortest but may be not the only one.

 

 

Input
The first line is the test case number t. Then t test cases follow. In each case, the first line is an integer n ( 1<=n<=8 ) represents number of the DNA sequences. The following k lines contain the k sequences, one per line. Assuming that the length of any sequence is between 1 and 5.
 

 

Output
For each test case, print a line containing the length of the shortest sequence that can be made from these sequences.
 

 

Sample Input
  
  
1 4 ACGT ATGC CGTT CAGT
 

 

Sample Output
  
  
8
#include<iostream>
#include<cstdio>
#include<string>
using namespace std;
int n;//字符串个数
string map[10];//字符串
int len[10];
string DNA="ATCG";
int DEPTH;//迭代加深搜索深度
struct Point
{
    int p[10];
}Pos;//Pos.p[i]表示第i个字符串正在查询的第Pos.p[i]个字符
int dfs(Point Pos,int cur)//cur表示当前位置
{
    if(cur>DEPTH) return 0;
    for(int i=0;i<n;i++)
    {
        if(len[i]-Pos.p[i]+cur>DEPTH) return 0;//剪枝
    }
    int flag=1;
    for(int i=0;i<n;i++)
    {
        if(Pos.p[i]<len[i])//表示还没有都搜到最后位置
        {
            flag=0;break;
        }
    }
    if(flag) return 1;//表示都搜索到了最后位置
    Point temp;
    for(int i=0;i<4;i++)//枚举第cur位置上放的字符
    {
        flag=0;
        for(int j=0;j<n;j++)
        {
            if(map[j][Pos.p[j]]==DNA[i])
            {
                flag=1;
                temp.p[j]=Pos.p[j]+1;
            }
            else temp.p[j]=Pos.p[j];
        }
        if(flag)//剪枝
        {
            if(dfs(temp,cur+1)) return 1;
        }
    }
    return 0;//important
}
int main()
{
    int ci;scanf("%d",&ci);
    while(ci--)
    {
        scanf("%d",&n);
        int _max=0;
        for(int i=0;i<n;i++)
        {
            cin>>map[i];
            len[i]=map[i].size();
            if(len[i]>_max) _max=len[i];
        }
        for(int i=0;i<10;i++) Pos.p[i]=0;
        for(DEPTH=_max;;DEPTH++)
        {
            if(dfs(Pos,0)) break;
        }
        printf("%d/n",DEPTH);
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值