zoukankan      html  css  js  c++  java
  • bzoj 3942: [Usaco2015 Feb]Censoring

    3942: [Usaco2015 Feb]Censoring

    Time Limit: 10 Sec  Memory Limit: 128 MB
    Submit: 611  Solved: 324
    [Submit][Status][Discuss]

    Description

    Farmer John has purchased a subscription to Good Hooveskeeping magazine for his cows, so they have plenty of material to read while waiting around in the barn during milking sessions. Unfortunately, the latest issue contains a rather inappropriate article on how to cook the perfect steak, which FJ would rather his cows not see (clearly, the magazine is in need of better editorial oversight).

    FJ has taken all of the text from the magazine to create the string S of length at most 10^6 characters. From this, he would like to remove occurrences of a substring T to censor the inappropriate content. To do this, Farmer John finds the _first_ occurrence of T in S and deletes it. He then repeats the process again, deleting the first occurrence of T again, continuing until there are no more occurrences of T in S. Note that the deletion of one occurrence might create a new occurrence of T that didn't exist before.

    Please help FJ determine the final contents of S after censoring is complete

    有一个S串和一个T串,长度均小于1,000,000,设当前串为U串,然后从前往后枚举S串一个字符一个字符往U串里添加,若U串后缀为T,则去掉这个后缀继续流程。

    
    
    

    Input

    The first line will contain S. The second line will contain T. The length of T will be at most that of S, and all characters of S and T will be lower-case alphabet characters (in the range a..z).
     

    Output

    The string S after all deletions are complete. It is guaranteed that S will not become empty during the deletion process.

    
    
    

    Sample Input

    whatthemomooofun
    moo

    Sample Output

    whatthefun
    #include<cstdio>
    #include<cstring>
    #include<iostream>
    #define maxn 1000010
    using namespace std;
    int fail[maxn],nxt[maxn],n1,n2,top;
    char s1[maxn],s2[maxn],s3[maxn];
    int main(){
        scanf("%s%s",s1+1,s2+1);
        n1=strlen(s1+1);n2=strlen(s2+1);
        fail[1]=0;
        for(int i=2;i<=n2;i++){
            int p=fail[i-1];
            while(p&&s2[p+1]!=s2[i])p=fail[p];
            if(s2[p+1]==s2[i])p++;
            fail[i]=p;
        }
        nxt[0]=0;
        for(int i=1;i<=n1;i++){
            s3[++top]=s1[i];
            int p=nxt[top-1];
            while(p&&s1[i]!=s2[p+1])p=fail[p];
            if(s1[i]==s2[p+1])p++;
            nxt[top]=p;
            if(p==n2)top-=n2; 
        }
        for(int i=1;i<=top;i++)printf("%c",s3[i]);
        return 0;
    }
  • 相关阅读:
    Node.js入门学习笔记
    Memcached服务器安装、配置、使用详解
    基于Dubbo框架构建分布式服务
    Apache Beam:一个开源的统一的分布式数据处理编程库
    Spring Cloud Netflix构建微服务入门实践
    内部排序算法:快速排序
    内部排序算法:冒泡排序
    内部排序算法:基数排序
    Java常见面试题
    svn+ssh方式svn服务器和客户端的配置[转载]
  • 原文地址:https://www.cnblogs.com/thmyl/p/8094354.html
Copyright © 2011-2022 走看看