zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    第一章:Android系统的编译和移植实例读书笔记
    第二章:Android系统与嵌入式开发读书笔记
    第三章:Android移植平台工具介绍读书笔记
    第十章 嵌入式Linux的调试技术
    第九章 硬件抽象层:HAL
    第八章 让开发板发出声音:蜂鸣器驱动
    第七章 LED将为我闪烁:控制发光二极管
    第六章 第一个Linux驱动程序:统计单词个数
    第五章 搭建S3C6410开发板的测试环境
    第四章 源代码的下载和编译
  • 原文地址:https://www.cnblogs.com/kongkaikai/p/3267821.html
Copyright © 2011-2022 走看看