zoukankan      html  css  js  c++  java
  • poj3080 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

    这题就是用暴力枚举,初看很难用枚举实现,其实复杂度不大的。

    #include<stdio.h>
    #include<string.h>
    char s[13][70],s1[70],s2[70],ss[70];
    int len[20],next[70],len1,len2;
    void nextt()
    {
    	int i,j;
    	i=0;j=-1;
    	memset(next,-1,sizeof(next));
    	while(i<len2){
    		if(j==-1 || s2[i]==s2[j]){
    			i++;j++;next[i]=j;
    		}
    		else j=next[j];
    	}
    }
    
    int kmp()
    {
    	int i,j;
    	i=0;j=0;
    	while(i<len1 && j<len2){
    		if(j==-1 || s1[i]==s2[j]){
    			i++;j++;
    		}
    		else j=next[j];
    	}
    	if(j>=len2)return 1;
    	else return 0;
    }
    
    int main()
    {
    	int n,m,i,j,T,cunzai,flag;
    	scanf("%d",&T);
    	while(T--)
    	{
    		scanf("%d",&n);
    		for(i=1;i<=n;i++){
    			scanf("%s",s[i]);
    			len[i]=strlen(s[i]);
    		}
    		cunzai=0;
    		for(len2=60;len2>=3;len2--){
    			memset(s2,0,sizeof(s2));
    			for(j=0;j<=60-len2;j++){    //枚举起点 
    				for(i=0;i<=len2-1;i++){
    					s2[i]=s[1][j+i];
    				}
    				nextt();
    				flag=1;
    				for(i=2;i<=n;i++){
    					len1=len[i];
    					strcpy(s1,s[i]);
    					if(!kmp()){
    						flag=0;break;
    					}
    				}
    				if(flag==1){
    					if(cunzai==0){
    						cunzai=1;strcpy(ss,s2);
    					}
    					else{
    						if(strcmp(ss,s2)>0)strcpy(ss,s2);
    					}
    				}
    			}
    			if(cunzai)break;
    		}
    		if(cunzai)printf("%s
    ",ss);
    		else printf("no significant commonalities
    ");
    	}
    	return 0;
    }


  • 相关阅读:
    amoeba连接mysql--ERROR 2006 (HY000): MySQL server has gone away
    fd最大值和限制
    mysql ab主从复制出错及解决过程
    mysql复制知识整理
    MySQL权限
    客户端用plsql进行中文条件查询时无结果的解决办法
    ORACLE ASH/AWR
    总结:常用的Linux系统监控命令(2)
    讨论几种数据列Column的特性(上)
    Spring核心技术(五)——Spring中Bean的作用域
  • 原文地址:https://www.cnblogs.com/herumw/p/9464747.html
Copyright © 2011-2022 走看看