首页 > 其他分享 >hdu:剪花布条(kmp)

hdu:剪花布条(kmp)

时间:2023-01-23 11:35:22浏览次数:41  
标签:hdu int 布条 剪花 ++ 小饰条 kmp c2 c1

Problem Description
一块花布条,里面有些图案,另有一块直接可用的小饰条,里面也有一些图案。对于给定的花布条和小饰条,计算一下能从花布条中尽可能剪出几块小饰条来呢?

Input
输入中含有一些数据,分别是成对出现的花布条和小饰条,其布条都是用可见ASCII字符表示的,可见的ASCII字符有多少个,布条的花纹也有多少种花样。花纹条和小饰条不会超过1000个字符长。如果遇见#字符,则不再进行工作。

Output
输出能从花纹布中剪出的最多小饰条个数,如果一块都没有,那就老老实实输出0,每个结果之间应换行。


输入样例

abcde a3
aaaaaa  aa
#

输出样例

0
3
注意两个字符串的输入,以及p数组是自求串
附ac代码
#include<bits/stdc++.h>
using namespace std;
const int N=1e3+10;
int p[N];
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);cout.tie(0);
    char c1[N],c2[N];
    while(cin>>c1+1)
    {
        if(c1[1]=='#') break;
        cin>>c2+1;
        memset(p,0,sizeof(p));
        int l1=strlen(c1+1),l2=strlen(c2+1);
        p[1]=0;int j=0;
        for(int i=1;i<l2;++i)
        {
            while(j>0&&c2[i+1]!=c2[j+1]) j=p[j];
            if(c2[i+1]==c2[j+1]) j++;
            p[i+1]=j;
        }
        int cnt=0;
        for(int i=0;i<l1;++i)
        {
            while(j>0&&c1[i+1]!=c2[j+1]) j=p[j];
            if(c1[i+1]==c2[j+1]) j++;
            if(j==l2) {
                cnt++;j=0;
            }
        }
        cout<<cnt<<endl;
    }
    return 0;
}

 

标签:hdu,int,布条,剪花,++,小饰条,kmp,c2,c1
From: https://www.cnblogs.com/ruoye123456/p/17065070.html

相关文章

  • HDU 6157 The Karting
    题目传送门TheKarting思路分析序列上的路径问题,可以转化成起点和终点的匹配问题,dp匹配的权值,记录匹配的标记就可做数据很小,支持\(O(n^3)\)看起来可以直接dp引入......
  • 把KMP算法嚼碎了才利于消化!(C++)
    相信不少人在学数据结构的时候都被KMP算法搞的迷迷糊糊的,原理看的似懂非懂,代码写不出来,或者写出来了也不知道为什么就可以这么写。本文力求尽可能通俗详细的讲解KMP算法,让......
  • KMP 详解
    简介KMP这个名字的由来:它是三个人:D.E·Knuth、J.H·Morris和V.R·Pratt同时发现的。KMP是一种字符串单模匹配算法,复杂度\(\operatorname{O(n+k)}\)。其中......
  • KMP算法详解(逻辑分析&数学证明&代码实现)
    前言KMP算法是Knuth、Morris、Pratt三人在BF算法的基础上同时提出的模式匹配的高效算法。本文以字符串匹配问题为例,以通俗易懂的语言对KMP算法进行逻辑分析、数学证明和代码......
  • hdu:Holding Bin-Laden Captive(母函数,数学)
    ProblemDescriptionWeallknowthatBin-Ladenisanotoriousterrorist,andhehasdisappearedforalongtime.Butrecently,itisreportedthathehidesin......
  • hdu:Ignatius and the Princess III(母函数)
    ProblemDescription“Well,itseemsthefirstproblemistooeasy.Iwillletyouknowhowfoolishyouarelater.”feng5166says.“Thesecondproblemis,g......
  • hdu:Another kind of Fibonacci(含多种关系的矩阵快速幂)
    ProblemDescriptionAsweallknown,theFibonacciseries:F(0)=1,F(1)=1,F(N)=F(N-1)+F(N-2)(N>=2).NowwedefineanotherkindofFibonacci:......
  • hdu:Sum of Tribonacci Numbers(带前缀和矩阵快速幂)
    ProblemDescriptionEverybodyknowsFibonaccinumbers,nowwearetalkingabouttheTribonaccinumbers:T[0]=T[1]=T[2]=1;T[n]=T[n-1]+T[n-2]+T[n......
  • hdu: Count(矩阵快速幂)
    ProblemDescriptionFarmerJohn有n头奶牛.某天奶牛想要数一数有多少头奶牛,以一种特殊的方式:第一头奶牛为1号,第二头奶牛为2号,第三头奶牛之后,假如当前奶牛是第n头,那......
  • hdu:Queuing(矩阵快速幂)
    ProblemDescriptionQueuesandPriorityQueuesaredatastructureswhichareknowntomostcomputerscientists.TheQueueoccursofteninourdailylife.Ther......