zoukankan      html  css  js  c++  java
  • 【bzoj3940】[Usaco2015 Feb]Censoring AC自动机

    题目描述

    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^5 characters. He has a list of censored words t_1 ... t_N that he wishes to delete from S. To do so Farmer John finds the earliest occurrence of a censored word in S (having the earliest start index) and removes that instance of the word from S. He then repeats the process again, deleting the earliest occurrence of a censored word from S, repeating until there are no more occurrences of censored words in S. Note that the deletion of one censored word might create a new occurrence of a censored word that didn't exist before.Farmer John notes that the censored words have the property that no censored word appears as a substring of another censored word. In particular this means the censored word with earliest index in S is uniquely defined.Please help FJ determine the final contents of S after censoring is complete.
    FJ把杂志上所有的文章摘抄了下来并把它变成了一个长度不超过10^5的字符串S。他有一个包含n个单词的列表,列表里的n个单词记为t_1...t_N。他希望从S中删除这些单词。 FJ每次在S中找到最早出现的列表中的单词(最早出现指该单词的开始位置最小),然后从S中删除这个单词。他重复这个操作直到S中没有列表里的单词为止。注意删除一个单词后可能会导致S中出现另一个列表中的单词 FJ注意到列表中的单词不会出现一个单词是另一个单词子串的情况,这意味着每个列表中的单词在S中出现的开始位置是互不相同的 请帮助FJ完成这些操作并输出最后的S

    输入

    The first line will contain S. The second line will contain N, the number of censored words. The next N lines contain the strings t_1 ... t_N. Each string will contain lower-case alphabet characters (in the range a..z), and the combined lengths of all these strings will be at most 10^5.
    第一行包含一个字符串S 
    第二行包含一个整数N 
    接下来的N行,每行包含一个字符串,第i行的字符串是t_i

    输出

    The string S after all deletions are complete. It is guaranteed that S will not become empty during the deletion process.
    一行,输出操作后的S

    样例输入

    begintheescapexecutionatthebreakofdawn
    2
    escape
    execution

    样例输出

    beginthatthebreakofdawn


    题解

    AC自动机

    基本思路就是记录每匹配一个字符后指针在Trie中的位置,如果碰到单词就退回到这个单词之前的位置。

    可以使用一个栈来搞定。

    这里还顺便记录了当前的答案串。

    然而一开始写的标准AC自动机,T了,于是改Trie图(AC自动机优化?有限状态自动机?),然后飞速跑过,这个优化不是一般的重要。

    #include <cstdio>
    #include <cstring>
    #include <queue> 
    using namespace std;
    int next[100010][26] , cnt[100010] , tot = 1 , fail[100010] , sta[100010] , tt;
    char str[100010] , p[100010] , ans[100010];
    queue<int> q;
    void build()
    {
        int x , i , t;
        q.push(1);
        for(i = 0 ; i < 26 ; i ++ ) next[0][i] = 1; 
        while(!q.empty())
        {
            x = q.front() , q.pop();
            for(i = 0 ; i < 26 ; i ++ )
            {
                if(next[x][i])
                {
                    t = fail[x];
                    while(t && !next[t][i]) t = fail[t];
                    fail[next[x][i]] = next[t][i];
                    q.push(next[x][i]);
                }
                else next[x][i] = next[fail[x]][i];
            }
        }
    }
    int main()
    {
        int n , i , l , lt , now;
        scanf("%s%d" , str , &n);
        l = strlen(str);
        while(n -- )
        {
            scanf("%s" , p);
            lt = strlen(p);
            now = 1;
            for(i = 0 ; i < lt ; i ++ )
            {
                if(!next[now][p[i] - 'a']) next[now][p[i] - 'a'] = ++tot;
                now = next[now][p[i] - 'a'];
            }
            cnt[now] = lt;
        }
        build();
        sta[0] = 1 , now = 1;
        for(i = 0 ; i < l ; i ++ )
        {
            now = next[now][str[i] - 'a'];
            sta[++tt] = now , ans[tt] = str[i];
            if(cnt[now]) tt -= cnt[now] , now = sta[tt];
        }
        for(i = 1 ; i <= tt ; i ++ ) printf("%c" , ans[i]);
        printf("
    ");
        return 0;
    }

     

  • 相关阅读:
    树的直径的两种求法
    2018CCPC吉林赛区(重现赛)部分题解
    2019中国大学生程序设计竞赛-女生专场(重现赛)部分题解C-Function(贪心+优先队列) H-clock(模拟)
    HDU-1693 Eat the Trees(插头DP)
    【巷子】---redux---【react】
    【巷子】---flux---【react】
    【JavaScript算法】---希尔排序
    【JavaScript算法】---快速排序法
    【JavaScript算法】---插入排序
    【深拷贝VS浅拷贝】------【巷子】
  • 原文地址:https://www.cnblogs.com/GXZlegend/p/6764321.html
Copyright © 2011-2022 走看看