Blue Jeans

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
题目大意:找公共子串  长度优先 长度相等,字典序小的优先
觉得这题爆搜神的最有爱了
代码
 1 #include<iostream>
 2 #include<cstring>
 3 #include<cstdio>
 4 #include<string>
 5 using namespace std;
 6 int main()
 7 {
 8     char s[25][80],p[80],q[80];
 9     int m,n,i,j,k,len;
10     scanf("%d",&m);
11     while(m--)
12     {
13         q[0]='';
14         scanf("%d",&n);
15         getchar();
16         for(i=0; i<n; i++)
17             scanf("%s",s[i]);//输入不解释
18         len=strlen(s[0]);
19         for(i=0; i<len; i++ )
20         {
21             for(j=len-i; j>2; j--)
22             {
23                 strncpy(p,s[0]+i,j);
24                 p[j]='';
25                 for(k=1; k<n; k++)
26                     if(strstr(s[k],p)==NULL)
27                         break;
28                 if(k==n)
29                 {
30                     if(strlen(p)==strlen(q)&&strcmp(p,q)<0)//字符串分段复制函数
31                         strcpy(q,p);
32                     if(strlen(p)>strlen(q))
33                         strcpy(q,p);
34                 }
35             }
36         }
37         if(strlen(q)>2)
38             puts(q);
39         else
40             puts("no significant commonalities");
41     }
42     return 0;
43 }
View Code
原文地址:https://www.cnblogs.com/kongkaikai/p/3267821.html