usaco题目分享——Longest Prefix

本文介绍了一种用于生物信息学的最长前缀匹配算法,该算法通过分解序列以找到能够从给定原始集构建的最长前缀。文章提供了完整的代码实现,并解释了如何读取输入文件、处理字符串和进行比较。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Longest Prefix
IOI'96

The structure of some biological objects is represented by the sequence of their constituents, where each part is denoted by an uppercase letter. Biologists are interested in decomposing a long sequence into shorter sequences called primitives.

We say that a sequence S can be composed from a given set of primitives P if there is a some sequence of (possibly repeated) primitives from the set whose concatenation equals S. Not necessarily all primitives need be present. For instance the sequence ABABACABAABcan be composed from the set of primitives

	   {A, AB, BA, CA, BBC}

The first K characters of S are the prefix of S with length K. Write a program which accepts as input a set of primitives and a sequence of constituents and then computes the length of the longest prefix that can be composed from primitives.

PROGRAM NAME: prefix

INPUT FORMAT

First, the input file contains the list (length 1..200) of primitives (length 1..10) expressed as a series of space-separated strings of upper-case characters on one or more lines. The list of primitives is terminated by a line that contains nothing more than a period (`.'). No primitive appears twice in the list. Then, the input file contains a sequence S (length 1..200,000) expressed as one or more lines, none of which exceeds 76 letters in length. The "newlines" (line terminators) are not part of the string S.

SAMPLE INPUT (file prefix.in)

A AB BA CA BBC
.
ABABACABAABC

OUTPUT FORMAT

A single line containing an integer that is the length of the longest prefix that can be composed from the set P.

SAMPLE OUTPUT (file prefix.out)

11

很长知识的一道题目。对于字符的运用的考察。
可以参考代码,也可以自己尝试用其他方法。
当然,思维是一种基于模板的比较,来判断是否满足题意。
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
int len[205],o,lent,ans;
char f[205][12],r[205];
string s="",hh;
int main()
{
    freopen("prefix.in","r",stdin);
    freopen("prefix.out","w",stdout);
    int i,j,k;
    o=1;
    scanf("%s",f[o]);
    len[o]=strlen(f[o]);
    while(f[o][0]!='.')
    {
        o++;
        scanf("%s",f[o]);
        len[o]=strlen(f[o]);
    }
    o--;
    while(scanf("%s",r)==1)
        s+=r;
    lent=s.length();
    for(i=0;i<lent;++i)
    {
        for(j=1;j<=o;++j)
        {
            if(i+len[j]>lent) continue;
            int is=0;
            for(k=0;k<len[j];++k)
                if(s[i+k]!=f[j][k])
                {
                    is=1;
                    break;
                }
            if(is==1) continue;
            ans=max(ans,i+len[j]);
        }
        if(i+1>ans) break;
    }
    printf("%d\n",ans);
    return 0;
}

 

转载于:https://www.cnblogs.com/hhhhhhhhhh/p/5154802.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值