POJ3080——Blue Jeans(暴力+字符串匹配)

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

题目大意:

    输入N个DNA序列,每个DNA序列长度都为60。

    找到最长共有子序列。

    PS1:若长度相同输出字典序最小的

    PS2:若最长子序列长度小于2,则输出no significant commonalities

解题思路:

    暴力枚举第一个DNA序列的每一个子序列,用strstr()函数与2-N序列进行匹配。

Code:

 1 #include<stdio.h>
 2 #include<string>
 3 #include<cstring>
 4 #include<iostream>
 5 using namespace std;
 6 char str[100][100];
 7 void cpy(char *tmp,int i,int j)
 8 {
 9     int t=0,k;
10     for (k=i; k<=j; k++)
11         tmp[t++]=str[1][k];
12     tmp[t]=0;
13 }
14 void cmp(char *ans,char *tmp)
15 {
16     if (strlen(ans)<strlen(tmp)) strcpy(ans,tmp);
17     else if (strlen(ans)==strlen(tmp)&&strcmp(ans,tmp)>0)
18         strcpy(ans,tmp);
19 }
20 int main()
21 {
22     int T;
23     cin>>T;
24     while (T--)
25     {
26         int N;
27         char tmp[100];
28         cin>>N;
29         char ans[1000]= {0};
30         for (int i=1; i<=N; i++)
31             cin>>str[i];
32         for (int i=0; i<=59; i++)
33             for (int j=i; j<=59; j++)
34             {
35                 cpy(tmp,i,j);
36                 int k;
37                 for (k=2; k<=N; k++)
38                     if (strstr(str[k],tmp)==NULL) break;
39                 if (k==N+1)
40                     cmp(ans,tmp);
41             }
42         if (strlen(ans)>=3) printf("%s\n",ans);
43         else printf("no significant commonalities\n");
44     }
45     return 0;
46 }

POJ3080——Blue Jeans(暴力+字符串匹配),布布扣,bubuko.com

时间: 2024-11-08 03:19:47

POJ3080——Blue Jeans(暴力+字符串匹配)的相关文章

poj3080--Blue Jeans(字符串匹配)

Blue Jeans Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 12233   Accepted: 5307 Description The Genographic Project is a research partnership between IBM and The National Geographic Society that is analyzing DNA from hundreds of thousa

poj3080 Blue Jeans【KMP】【暴力】

Blue Jeans Time Limit: 1000MS   Memory Limit: 65536K Total Submissions:21746   Accepted: 9653 Description The Genographic Project is a research partnership between IBM and The National Geographic Society that is analyzing DNA from hundreds of thousan

POJ3080 Blue Jeans

Blue Jeans Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 16142   Accepted: 7189 Description The Genographic Project is a research partnership between IBM and The National Geographic Society that is analyzing DNA from hundreds of thousa

kuangbin专题十六 KMP&amp;&amp;扩展KMP POJ3080 Blue Jeans

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 wri

poj 3080 Blue Jeans 暴力

Blue Jeans Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 14283   Accepted: 6356 Description The Genographic Project is a research partnership between IBM and The National Geographic Society that is analyzing DNA from hundreds of thousa

POJ3080 Blue Jeans 【KMP 暴力水过】

题目描述 求n个字符串的最长公共序列,若长度相同,输出字典序最小的.若长度小于3,输出no significant commonalities Sample Input 3 2 GATACCAGATACCAGATACCAGATACCAGATACCAGATACCAGATACCAGATACCAGATA AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 3 GATACCAGATACCAGATACCAGATACCAGATACCAGA

poj3080 Blue Jeans(暴枚+kmp)

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 ta

[算法系列之十四]字符串匹配之Morris-Pratt字符串搜索算法

前言 我们前面已经看到,蛮力字符串匹配算法和Rabin-Karp字符串匹配算法均非有效算法.不过,为了改进某种算法,首先需要详细理解其基本原理.我们已经知道,暴力字符串匹配的速度缓慢,并已尝试使用Rabin-Karp中的一个散列函数对其进行改进.问题是,Rabin-Karp的复杂度与强力字符串匹配相同,均为O(mn). 我们显然需要采用一种不同方法,但为了提出这种不同方法,先来看看暴力字符串匹配有什么不妥之处.事实上,再深入地研究一下它的基本原理,就能找到问题的答案了. 在暴力匹配算法中,需要检

poj3080(Blue Jeans)kmp求多个串公共子串

题意:给出1-10个长度为60的字符串,求出最长的公共子串(长度不能小于3),如果有多个一样长的,输出字典序最短的. 解法:想到kmp时,自己第一反应枚举第一个串的所有子串,在其他所有串中走一遍kmp,复杂度为10*60*60*60,但是发现只需枚举第一个串后缀就可以,每次枚举记录在所有串能走最远中走的最短的那个长度.这样复杂度就成了10*60*60,0ms AC. 代码: /**************************************************** * autho