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

    AC自动机。嗯bzoj3940弱化版。水过去了(跑的慢啊QAQ。想了想可以用hash写。挖坑

    #include<cstdio>
    #include<cstring>
    #include<iostream>
    #include<algorithm>
    #include<queue>
    using namespace std;
    #define rep(i,s,t) for(int i=s;i<=t;i++)
    #define clr(x,c) memset(x,c,sizeof(x))
    const int nmax=1000005;
    int ch[nmax][26],fail[nmax],F[nmax],T[nmax];
    char s[nmax],t[nmax],S[nmax];
    void insert(){
    	int len=strlen(s),t=0,pt=0;
    	rep(i,0,len-1){
    		if(!ch[t][s[i]-'a']) ch[t][s[i]-'a']=++pt;
    		t=ch[t][s[i]-'a'];
    	}
    	F[t]=len;
    }
    void getfail(){
    	queue<int>q;fail[0]=0;q.push(0);
    	while(!q.empty()){
    		int x=q.front();q.pop();
    		rep(i,0,25) {
    			if(ch[x][i]) q.push(ch[x][i]),fail[ch[x][i]]=x==0?0:ch[fail[x]][i];
    			else ch[x][i]=x==0?0:ch[fail[x]][i];
    		}
    	}
    }
    int main(){
    	scanf("%s",t+1);
    	scanf("%s",s);insert();getfail();
    	int len=strlen(t+1),top=0,x=0;
    	rep(i,1,len){
    		S[++top]=t[i];
    		x=ch[x][t[i]-'a'];T[top]=x;
    		if(F[x]) top-=F[x],x=T[top];
    	}
    	rep(i,1,top) printf("%c",S[i]);printf("
    ");
    	return 0;
    }
    

      

    3942: [Usaco2015 Feb]Censoring

    Time Limit: 10 Sec  Memory Limit: 128 MB
    Submit: 294  Solved: 163
    [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

    HINT

     

    Source

    [Submit][Status][Discuss]
  • 相关阅读:
    shell中的交互模式:expect
    hive(II)--sql考查的高频问题
    ETL工具--kettle篇(17.10.09更新)
    hive(I)--学习总结之常用技能
    ubantu上搭建hive环境
    shell实例练习+详解
    搭建hadoop、hdfs环境--ubuntu(完全分布式)
    oracle 获取一个字段的年月日
    oracle 两表更新 报错ORA-01779: 无法修改与非键值保存表对应的列
    oracle 查看表空间 添加数据文件
  • 原文地址:https://www.cnblogs.com/fighting-to-the-end/p/5721831.html
Copyright © 2011-2022 走看看