zoukankan      html  css  js  c++  java
  • [ex-kmp] HDU 2019 Multi-University Training Contest 5-string matching

    string matching

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others)
    Total Submission(s): 3131    Accepted Submission(s): 724


    Problem Description
    String matching is a common type of problem in computer science. One string matching problem is as following:

    Given a string s[0len1], please calculate the length of the longest common prefix of s[ilen1] and s[0len1] for each i>0.

    I believe everyone can do it by brute force.
    The pseudo code of the brute force approach is as the following:



    We are wondering, for any given string, what is the number of compare operations invoked if we use the above algorithm. Please tell us the answer before we attempt to run this algorithm.
     
    Input
    The first line contains an integer T, denoting the number of test cases.
    Each test case contains one string in a line consisting of printable ASCII characters except space.

    1T30

    * string length 106 for every string
     
    Output
    For each test, print an integer in one line indicating the number of compare operations invoked if we run the algorithm in the statement against the input string.
     
    Sample Input
    3 _Happy_New_Year_
    ywwyww
    zjczzzjczjczzzjc
     
    Sample Output
    17
    7
    32

    题意:

    给一个字符串s[0...len-1],计算它 s[i…len−1] 和 s[0…len−1] 最长公共前缀的长度之和,如果最后一个匹配的不是串中的最后一个,则要额外加1

    思路:

    用ex-kmp求解

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 const int amn=1e6+6;
     4 char a[amn],str1[amn],str2[amn];
     5 int pos[amn],ex[amn],alen,blen;
     6 void f(){
     7     pos[1]=alen;
     8     int x=1;
     9     while(str2[x]==str2[x+1]&&x+1<=blen)x++;
    10     pos[2]=x-1;
    11     int k=2;
    12     for(int i=3;i<=alen;i++){
    13         int p=k+pos[k]-1,le=pos[i-k+1];
    14         if(i+le<p+1)pos[i]=le;
    15         else{
    16             int j=p-i+1;
    17             if(j<0)j=0;
    18             while(str2[j+1]==str2[i+j]&&i+j<=blen)j++;
    19             pos[i]=j;
    20             k=i;
    21         }
    22     }
    23     x=1;
    24     while(str1[x]==str2[x]&&x<=blen)x++;
    25     ex[1]=x-1;
    26     k=1;
    27     for(int i=2;i<=alen;i++){
    28         int p=k+ex[k]-1,le=pos[i-k+1];
    29         if(i+le<p+1)ex[i]=le;
    30         else{
    31             int j=p-i+1;
    32             if(j<0)j=0;
    33             while(str2[j+1]==str1[i+j]&&i+j<=alen&&j<=blen)j++;
    34             ex[i]=j;
    35             k=i;
    36         }
    37     }
    38 }
    39 int main(){
    40     int T;
    41     long long ans;
    42     scanf("%d",&T);
    43     while(T--){
    44         scanf("%s",a);
    45         alen=blen=strlen(a);
    46         strcpy(str1+1,a);
    47         strcpy(str2+1,a);
    48         f();
    49         ans=0;
    50         for(int i=2;i<=alen;i++){
    51             if(alen-i+1>ex[i]){
    52                 ans+=ex[i]+1;
    53             }
    54             else ans+=ex[i];
    55         }
    56         printf("%lld
    ",ans);
    57     }
    58 }
    59 /***
    60 给一个字符串s[0...len-1],计算它 s[i…len−1] 和 s[0…len−1] 最长公共前缀的长度之和,如果最后一个匹配的不是串中的最后一个,则要额外加1
    61 用扩展kmp求解
    62 ***/
  • 相关阅读:
    NodeJS笔记:处理非utf8编码
    SQL Server存储过程中的异常处理
    "岛主" 同学给我出的算法题
    学 Win32 汇编[18]: 关于压栈(PUSH)与出栈(POP) 之二
    如何在数据表中存取图片 回复 "三足乌" 的问题
    学 Win32 汇编[19]: 查看二进制等相关函数
    如何删除动态数组的指定元素 回复 "Splendour" 的部分问题
    学 Win32 汇编[17]: 关于压栈(PUSH)与出栈(POP) 之一
    学 Win32 汇编[22] 逻辑运算指令: AND、OR、XOR、NOT、TEST
    学 Win32 汇编[20]: 洞察标志寄存器
  • 原文地址:https://www.cnblogs.com/Railgun000/p/11306744.html
Copyright © 2011-2022 走看看