POJ3080题解——暴力orKMP

题目链接:http://poj.org/problem?id=3080

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

题目思路:首先一点:我们都是利用第一个字符串作为比较(截取其中一部分作为模式串)两个概念:文本串:就是待查找(询)的字符串(比如abcde)模式串:就是要在文本串中查找的字符串(比如bcd,和上面对应的模式串)首先思路一是大家都想得到的暴力枚举法(但是因为本人是个蒟蒻,有些函数还不会用,不知道怎么实现555~),那就是从第一个字符串中列举所有按长度值递增的字符串(长度值一样按照串的起始位置从前往后取,注意选取的字符串最后一位不要越界)与除此之外的后面所有字符串比较,如果选取的字符串(长度大于等于3)在后面的待比较的字符串中均有出现。则输出该字符串;否则输出
no significant commonalities题目思路二是列举截取第一个字符串的起始地址而不需要列举它的长度,而只需要用  截取的字符串 和每个字符串(第2个到第n个)kmp匹配到指针在模式串中所能达到的最大距离当中取最小的,就是我们要的答案了。然后代码如下:

//POJ3080
//暴力枚举法
#include<iostream>
#include<string>
using namespace std;
int t,n;
string s[11];

int main()
{
    cin>>t;
    while(t--)
    {
        cin>>n;
        string snk="no significant commonalities";
        for(int i=1;i<=n;i++)cin>>s[i];
        for(int i=3;i<=60;i++)//列举长度3-60
        {
            for(int j=0;j<=60-i;j++)//列举长度为i的字符串从哪里开始
            {
                string mo=s[1].substr(j,i);//s[1]中从j开始长度为i的字符串付给mo
                bool flag=true;
                for(int k=2;k<=n;k++)//从s[2]开始对比
                {
                    if(s[k].find(mo)==string::npos)//没有查找到
                    {
                        flag=false;
                        break;
                    }
                }
                if(!flag)continue;//没有就重来
                else//如果找到了
                {
                    if(snk=="no significant commonalities")snk=mo;
                    else if(snk.size()<mo.size())snk=mo;
                    else if(snk.size()==mo.size())snk=min(snk,mo);
                }
            }
        }
        cout<<snk<<endl;
    }
    return 0;
}

暴力枚举法

//POJ3080
//暴力枚举法
/*
#include<iostream>
#include<string>
using namespace std;
int t,n;
string s[11];

int main()
{
    cin>>t;
    while(t--)
    {
        cin>>n;
        string snk="no significant commonalities";
        for(int i=1;i<=n;i++)cin>>s[i];
        for(int i=3;i<=60;i++)//列举长度3-60
        {
            for(int j=0;j<=60-i;j++)//列举长度为i的字符串从哪里开始
            {
                string mo=s[1].substr(j,i);//s[1]中从j开始长度为i的字符串付给mo
                bool flag=true;
                for(int k=2;k<=n;k++)//从s[2]开始对比
                {
                    if(s[k].find(mo)==string::npos)//没有查找到
                    {
                        flag=false;
                        break;
                    }
                }
                if(!flag)continue;//没有就重来
                else//如果找到了
                {
                    if(snk=="no significant commonalities")snk=mo;
                    else if(snk.size()<mo.size())snk=mo;
                    else if(snk.size()==mo.size())snk=min(snk,mo);
                }
            }
        }
        cout<<snk<<endl;
    }
    return 0;
}
*/
//kmp算法
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<cstdlib>
#include<iostream>
#include<iomanip>
#include<list>
#include<map>
#include<queue>
#include<sstream>
#include<stack>
#include<string>
#include<set>
#include<vector>
using namespace std;
#define PI acos(-1.0)
#define pppp cout<<endl;
#define EPS 1e-8
#define LL long long
#define ULL unsigned long long     //1844674407370955161
#define INT_INF 0x3f3f3f3f      //1061109567
#define LL_INF 0x3f3f3f3f3f3f3f3f //4557430888798830399
// ios::sync_with_stdio(false);
// 那么cin, 就不能跟C的 scanf,sscanf, getchar, fgets之类的一起使用了。
const int dr[]= {0, 0, -1, 1, -1, -1, 1, 1};
const int dc[]= {-1, 1, 0, 0, -1, 1, -1, 1};
inline int read()//输入外挂
{
    int ret=0, flag=0;
    char ch;
    if((ch=getchar())==‘-‘)
        flag=1;
    else if(ch>=‘0‘&&ch<=‘9‘)
        ret = ch - ‘0‘;
    while((ch=getchar())>=‘0‘&&ch<=‘9‘)
        ret=ret*10+(ch-‘0‘);
    return flag ? -ret : ret;
}
char s[10][1010];//待匹配串
char s2[1010];
char str[1010];//输出
int Next[1010];//优化后的失配指针,记住这里f要比P多一位,因为P到m-1即可,但是f还要计算出m的失配指针
int Next2[1010];//Next2用来保存KM指针,是为优化f的失配指针,f保存的是优化之后的失配指针
int ma;
int n;
void getFail(int len)//对于s2字符串生成(优化后的)Next和Next2数组
{
    Next[0]=Next[1] = 0;
    Next2[0]=Next2[1]=0;
    for(int i=1; i<len; i++)//len为s2长度
    {
        int j=Next2[i];
        while(j&&s2[i]!=s2[j] )//一直循环到他们对应的字符相等 如果一直不相等(即找不到前后缀一样的)那此时j就为0了
            j=Next2[j];
        Next2[i+1]=Next[i+1]=(s2[i]==s2[j])?j+1:0;//0表示如果上面循环还是没找到相同前缀后缀那么i+1的元素不匹配下一步归零
        if(Next[i+1]==j+1 && s2[i+1]==s2[j+1])
            Next[i+1]=Next[j+1];
    }
}
void Find(int x,int len) //找到所有匹配点
{
    getFail(len);
    ma=100;
    for(int k=1;k<n;++k)//n是待匹配的字符串下标
    {
        int j=0;
        int m=0;
        for(int i=0; i<x&&j<len; i++)
        {
            while(j && s[k][i]!=s2[j])
                j=Next[j];
            if(s[k][i]==s2[j])
                j++;
            if(j>m)//寻找长的
                m=j;
        }
        if(m<ma)ma=m;//只有小的能包含长的
    }
}
int main()
{
    //freopen("D:\\chnegxubianji\\inORout\\in.txt", "r", stdin);
    //freopen("D:\\chnegxubianji\\inORout\\out.txt", "w", stdout);
    int T;
    scanf("%d",&T);
    while(T--)
    {
        scanf("%d",&n);
        for(int i=0; i<n; i++)
            scanf("%s",s[i]);
        int anslen=0;//最终长度
        for(int i=0; i<=57; i++)
        {
            strcpy(s2,s[0]+i);//从s[0][0+i]开始到结尾复制到s2当中
            int len=60-i;//所以长度为60-i
            Find(60,len);
            if(ma>anslen)//找到长度大于之前的
            {
                anslen=ma;
                strncpy(str,s[0]+i,ma);
                str[anslen]=‘\0‘;
            }
            else if(ma==anslen)//相同长度寻找字典序小的
            {
                strncpy(s2,s[0]+i,anslen);
                s2[anslen]=‘\0‘;
                if(strcmp(s2,str)<0)
                {
                    strcpy(str,s2);
                    str[anslen]=‘\0‘;
                }
            }
        }
        if(anslen>=3)
            printf("%s\n",str);
        else
            puts("no significant commonalities");
    }
    return 0;
}

KMP

原文地址:https://www.cnblogs.com/Mingusu/p/11799788.html

时间: 2024-10-07 21:02:27

POJ3080题解——暴力orKMP的相关文章

POJ3450题解——暴力orKMP

题目链接:http://poj.org/problem?id=3450 Corporate Identity Beside other services, ACM helps companies to clearly state their “corporate identity”, which includes company logo but also other signs, like trademarks. One of such companies is Internet Buildi

【bzoj题解】1012 最大数

题目描述 现在请求你维护一个数列,要求提供以下两种操作:1.查询操作.语法:Q L 功能:查询当前数列中末尾L个数中的最大的数,并输出这个数的值.限制:L不超过当前数列的长度.2.插入操作.语法:A n 功能:将n加上t,其中t是最近一次查询操作的答案(如果还未执行过查询操作,则t=0),并将所得结果对一个固定的常数D取模,将所得答案插入到数列的末尾.限制:n是非负整数并且在长整范围内.注意:初始时数列是空的,没有一个数. 输入 第一行两个整数,M和D,其中M表示操作的个数(M <= 200,0

【bzoj4052】[Cerc2013]Magical GCD 暴力

题目描述 给出一个长度在 100 000 以内的正整数序列,大小不超过 10^12. 求一个连续子序列,使得在所有的连续子序列中,它们的GCD值乘以它们的长度最大. 样例输入 1 5 30 60 20 20 20 样例输出 80 题解 暴力 由于$\gcd$具有结合律,所以如果$\gcd(a,b)$比$a$小,那么至少小了一半. 所以所有以一个数为右端点的区间中,本质不同的$\gcd$个数只有$\log a$个. 于是从左向右枚举右端点,统计出以该点为右端点的所有$\gcd$以及区间长度,统计答

【bzoj2793】[Poi2012]Vouchers 暴力

题目描述 考虑正整数集合,现在有n组人依次来取数,假设第i组来了x人,他们每个取的数一定是x的倍数,并且是还剩下的最小的x个.正整数中有m个数被标成了幸运数,问有哪些人取到了幸运数. 输入 第一行一个正整数m (m<=1,000,000),下面m行每行一个正整数x (x<=1,000,000),表示x是一个幸运数.接下来一行一个正整数n (n<=1,000,000),下面n行每行一个正整数x (x<=1,000,000),表示这一组来了x个人. 输出 第一行输出一个非负整数k,表示

【bzoj1495】[NOI2006]网络收费 暴力+树形背包dp

题目描述 给出一个有 $2^n$ 个叶子节点的完全二叉树.每个叶子节点可以选择黑白两种颜色. 对于每个非叶子节点左子树中的叶子节点 $i$ 和右子树中的叶子节点 $j$ :如果 $i$ 和 $j$ 的颜色都为当前节点子树中颜色较多(相等视为白色)的那个,则不需要付出代价:都为较小的那个则需要付 $2f[i][j]$ 的代价:否则需要付 $f[i][j]$ . 求最小代价. 输入 输入文件中第一行有一个正整数N. 第二行有2N个整数,依次表示1号,2号,…,2N号用户注册时的付费方式,每一个数字若

【题解】黑白奶牛

题目描述 有N只奶牛从左往右排成一行,编号是1至N.这N只奶牛当中,有一些奶牛是黑色的,其余的是白色的. color[i]表示第i只奶牛的颜色,如果color[i]=0则表示第i头奶牛是黑色的,如果color[i]=1则表示第i头奶牛是白色的. 六一奶牛儿童节快到了,农场主Farmer John要从这N头奶牛当中,挑选尽可能多的奶牛去参加晚会. Farmer John挑选奶牛的原则是:挑选编号是连续的一段奶牛,这一段奶牛的颜色必须全部是白色的. Farmer John有一个魔法棒,每用一次魔法棒

HDU 6697 Closest Pair of Segments (计算几何 暴力)

2019 杭电多校 10 1007 题目链接:HDU 6697 比赛链接:2019 Multi-University Training Contest 10 Problem Description The closest pair of points problem is a well-known problem of computational geometry. In this problem, you are given \(n\) points in the Euclidean plan

[BZOJ1552][Cerc2007]robotic sort

试题描述 输入 输入共两行,第一行为一个整数N,N表示物品的个数,1<=N<=100000.第二行为N个用空格隔开的正整数,表示N个物品最初排列的编号. 输出 输出共一行,N个用空格隔开的正整数P1,P2,P3-Pn,Pi表示第i次操作前第i小的物品所在的位置. 注意:如果第i次操作前,第i小的物品己经在正确的位置Pi上,我们将区间[Pi,Pi]反转(单个物品). 输入示例 6 3 4 5 1 6 2 输出示例 4 6 4 5 6 6 数据规模及约定 见"输入" 题解 暴力

[NOIp 2016]愤怒的小鸟

Description Input Output Sample Input 22 01.00 3.003.00 3.005 21.00 5.002.00 8.003.00 9.004.00 8.005.00 5.00 Sample Output 11 Sample Explanation HINT 题解 暴力做法: 1.因为三点可以确定一条抛物线,又必过原点,那么只需要再找两个点就能确定一条抛物线; 2.枚举点对,求出抛物线方程,注意两点的$x$坐标不能相等,抛物线的二次项系数必须小于$0$;