poj3080——Blue Jeans(字串)

来源:互联网 发布:网络销售现货有前途吗 编辑:程序博客网 时间:2024/06/06 00:30

Description

The Genographic Project is a research partnership between IBM and The National Geographic Society that is analyzing DNA from hundreds of thousands of contributors to map how the Earth was populated.

As an IBM researcher, you have been tasked with writing a program that will find commonalities amongst given snippets of DNA that can be correlated with individual survey information to identify new genetic markers.

A DNA base sequence is noted by listing the nitrogen bases in the order in which they are found in the molecule. There are four bases: adenine (A), thymine (T), guanine (G), and cytosine (C). A 6-base DNA sequence could be represented as TAGACC.

Given a set of DNA base sequences, determine the longest series of bases that occurs in all of the sequences.
Input

Input to this problem will begin with a line containing a single integer n indicating the number of datasets. Each dataset consists of the following components:
A single positive integer m (2 <= m <= 10) indicating the number of base sequences in this dataset.
m lines each containing a single base sequence consisting of 60 bases.
Output

For each dataset in the input, output the longest base subsequence common to all of the given base sequences. If the longest common subsequence is less than three bases in length, display the string “no significant commonalities” instead. If multiple subsequences of the same longest length exist, output only the subsequence that comes first in alphabetical order.
Sample Input

3
2
GATACCAGATACCAGATACCAGATACCAGATACCAGATACCAGATACCAGATACCAGATA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
3
GATACCAGATACCAGATACCAGATACCAGATACCAGATACCAGATACCAGATACCAGATA
GATACTAGATACTAGATACTAGATACTAAAGGAAAGGGAAAAGGGGAAAAAGGGGGAAAA
GATACCAGATACCAGATACCAGATACCAAAGGAAAGGGAAAAGGGGAAAAAGGGGGAAAA
3
CATCATCATCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC
ACATCATCATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA
AACATCATCATTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT
Sample Output

no significant commonalities
AGATAC
CATCATCAT

求给出的串里最长的公共字串,如果两个字串长度相等,则输出最小的。公共字串小于3的不输出。
用strstr可以轻松解决,这个函数strstr(a,b)用来求字串b在a中的位置,如果没有就返回0。

#include <iostream>#include <cstring>#include <string>#include <vector>#include <queue>#include <cstdio>#include <set>#include <cmath>#include <algorithm>#define INF 0x3f3f3f3f#define MAXN 105#define Mod 10001using namespace std;char str[100][100],sub[100],ans[100];int main(){    int t;    scanf("%d",&t);    while(t--)    {        int n,s,check;        scanf("%d",&n);        for(int i=1; i<=n; ++i)            scanf("%s",str[i]);        memset(ans,0,sizeof(ans));        for(int len=1; len<=60; ++len)        {            for(int i=0; i+len<=60; ++i)            {                s=0;                for(int j=i;; ++j)                {                    sub[s++]=str[1][j];                    if(s==len)                        break;                }                sub[s]='\0';                check=1;                for(int j=2; j<=n; ++j)                    if(strstr(str[j],sub)==0)                    {                        check=0;                        break;                    }                if(check)                {                    if(strlen(sub)>strlen(ans))                        strcpy(ans,sub);                    else if(strcmp(ans,sub)>0)                        strcpy(ans,sub);                }            }        }        if(strlen(ans)<3)            printf("no significant commonalities\n");        else            printf("%s\n",ans);    }    return 0;}
0 0
原创粉丝点击