zoukankan      html  css  js  c++  java
  • BZOJ3940:[USACO]Censoring(AC自动机,栈)

    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^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

    Input

    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

    Output

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

    Sample Input

    begintheescapexecutionatthebreakofdawn
    2
    escape
    execution

    Sample Output

    beginthatthebreakofdawn

    Solution

    一开始的确没啥思路……一看到有栈这个标签就明了了……
    果然我还是水平太菜啊
    不过一看到栈这个题就没什么思考难度了……就基本全靠细节了
    首先把自动机建出来……话说我这几天才发现原来自己建的一直叫trie图
    然后一位一位放到自动机上跑。
    分两种情况:
    1、栈空
       判断是否是根节点的一个儿子即可(即判断是否是单词的第一位)
    2、栈不为空
       判断当前位能否和上一位匹配,如果不能的话就清空栈(因为有这一位挡着就已经前功尽弃了)
    然后当当前位匹配到某一位的末尾后,就将这个单词从栈中清空(因为题目说了越靠前出现的越早清空)
    清空栈的时候输出一下就好了(除了匹配到的单词不输出)

    Code

     1 #include<iostream>
     2 #include<cstring>
     3 #include<cstdio>
     4 #include<queue>
     5 #define N (100000+10)
     6 using namespace std;
     7 int Fail[N],Son[N][27],End[N];
     8 int n,sz,maxn,stack[N],top;
     9 char s[N],st[N],ch[N];
    10 queue<int>q;
    11 
    12 void Insert(char s[])
    13 {
    14     int len=strlen(s),now=0;
    15     for (int i=0;i<len;++i)
    16     {
    17         int x=s[i]-'a';
    18         if (!Son[now][x]) Son[now][x]=++sz;
    19         now=Son[now][x];
    20         ch[now]=s[i];
    21     }
    22     End[now]=len;
    23 }
    24 
    25 void Build_Fail()
    26 {
    27     for (int i=0;i<26;++i)
    28         if (Son[0][i])
    29             q.push(Son[0][i]);
    30     while (!q.empty())
    31     {
    32         int now=q.front(); q.pop();
    33         for (int i=0;i<26;++i)
    34         {
    35             if (!Son[now][i])
    36             {
    37                 Son[now][i]=Son[Fail[now]][i];
    38                 continue;
    39             }
    40             Fail[Son[now][i]]=Son[Fail[now]][i];
    41             q.push(Son[now][i]);
    42         }
    43     }
    44 }
    45 
    46 void Compare(char s[])
    47 {
    48     int len=strlen(s);
    49     for (int i=0;i<len;++i)
    50     {
    51         int x=s[i]-'a';
    52         if (!top)
    53         {
    54             if (Son[0][x])
    55                 stack[++top]=Son[0][x];
    56             else
    57                 printf("%c",s[i]);
    58         }
    59         else
    60         {
    61             int son=Son[stack[top]][x];
    62             if (Son[stack[top]][x])
    63                 stack[++top]=son;
    64             else
    65             {
    66                 for (int j=1;j<=top;++j)
    67                     printf("%c",ch[stack[j]]);
    68                 printf("%c",s[i]);
    69                 top=0;
    70             }
    71         }
    72         if (End[stack[top]])
    73         {
    74             int t=End[stack[top]];
    75             for (int i=1;i<=t;++i)
    76                 top--;
    77         }
    78     }
    79     for (int i=1;i<=top;++i)
    80         printf("%c",ch[stack[i]]);
    81 }
    82 
    83 int main()
    84 {
    85     scanf("%s%d",s,&n);
    86     for (int i=1;i<=n;++i)
    87         scanf("%s",st),Insert(st);
    88     Build_Fail();
    89     Compare(s);
    90 }
  • 相关阅读:
    MongoDB学习笔记(五) MongoDB文件存取操作(转)
    MongoDB学习笔记(四) 用MongoDB的文档结构描述数据关系(转)
    Log4net配置相关
    UML 依赖 关联 聚合 组合
    亲属称谓
    Unity预定义程序集及自定义包编译顺序
    For Windows Phone8 phones make sure that the Windows Phone IP Over USB Transport(IpOverUsbSvc) service is running
    提升Entityframework效率的几种方法
    将RDLC报表工具栏中的英文改为中文
    C#函数式程序设计初探——基础理论篇
  • 原文地址:https://www.cnblogs.com/refun/p/8685682.html
Copyright © 2011-2022 走看看