博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
poj3080——Blue Jeans(字串)
阅读量:2344 次
发布时间:2019-05-10

本文共 2992 字,大约阅读时间需要 9 分钟。

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 
#include
#include
#include
#include
#include
#include
#include
#include
#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;}

转载地址:http://yxcvb.baihongyu.com/

你可能感兴趣的文章
销毁new的指针
查看>>
向控制台打印指针
查看>>
四种类型转换
查看>>
数组指针和指针数组
查看>>
数据的大端小端表示法
查看>>
什么是类型安全的
查看>>
深拷贝和浅拷贝
查看>>
全局静态变量和局部静态变量的区别
查看>>
内链接和外连接
查看>>
类的静态成员
查看>>
类的公有私有保护继承
查看>>
类的常量成员的初始化
查看>>
类成员初始化顺序
查看>>
拷贝构造和赋值函数
查看>>
将类的方法声明为虚函数的作用
查看>>
函数指针
查看>>
进程调度的概念
查看>>
操作系统典型调度算法
查看>>
1.内存管理的概念
查看>>
2.内存覆盖与内存交换
查看>>