【codeforces】163E. e-Government AC自动机+树状数组

2024-09-05 14:38

本文主要是介绍【codeforces】163E. e-Government AC自动机+树状数组,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

传送门:【codeforces】163E. e-Government


题目分析:感觉到现在再做类似题目已经感觉很水了= =。。。这题也就是构建了fail指针树以后树状数组维护就好了。10^6个字母的意思就是说我们可以随便搞。。。


代码如下:


#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std ;typedef long long LL ;#define rep( i , a , b ) for ( int i = a ; i < b ; ++ i )
#define For( i , a , b ) for ( int i = a ; i <= b ; ++ i )
#define rev( i , a , b ) for ( int i = a ; i >= b ; -- i )
#define clr( a , x ) memset ( a , x , sizeof a )const int MAXN = 1000005 ;
const int MAXE = 1000005 ;struct Edge {int v , n ;Edge () {}Edge ( int var , int next ) : v ( var ) , n ( next ) {}
} ;struct ac_automaton {int next[MAXN][26] ;int fail[MAXN] ;int word[MAXN] ;int root ;int cur ;int Q[MAXN] ;int head ;int tail ;int T[MAXN] ;int in[MAXN] ;int ou[MAXN] ;int dfs_clock ;Edge E[MAXE] ;int H[MAXN] , cntE ;bool a[MAXN] ;int newnode () {rep ( i , 0 , 26 ) next[cur][i] = -1 ;return cur ++ ;}void init () {cur = 0 ;cntE = 0 ;dfs_clock = 0 ;clr ( a , 0 ) ;clr ( T , 0 ) ;clr ( H , -1 ) ;root = newnode () ;}void addedge ( int u , int v ) {E[cntE] = Edge ( v , H[u] ) ;H[u] = cntE ++ ;}void insert ( char buf[] , int idx ) {int now = root ;for ( int i = 0 ; buf[i] ; ++ i ) {int x = buf[i] - 'a' ;if ( next[now][x] == -1 ) next[now][x] = newnode () ;now = next[now][x] ;}word[idx] = now ;}void build () {head = tail = 0 ;fail[root] = root ;rep ( i , 0 , 26 ) {if ( ~next[root][i] ) {fail[next[root][i]] = root ;Q[tail ++] = next[root][i] ;} else next[root][i] = root ;}while ( head != tail ) {int now = Q[head ++] ;rep ( i , 0 , 26 ) {if ( ~next[now][i] ) {fail[next[now][i]] = next[fail[now]][i] ;Q[tail ++] = next[now][i] ;} else next[now][i] = next[fail[now]][i] ;}}rep ( i , 1 , cur ) addedge ( fail[i] , i ) ;}void dfs ( int u ) {in[u] = ++ dfs_clock ;for ( int i = H[u] ; ~i ; i = E[i].n ) dfs ( E[i].v ) ;ou[u] = dfs_clock ;}int sum ( int x , int ans = 0 ) {for ( int i = x ; i <= dfs_clock ; i += i & -i ) ans += T[i] ;return ans ;}void add ( int x , int v ) {for ( int i = x ; i ; i -= i & -i ) T[i] += v ;}void query ( char buf[] ) {int now = root ;LL ans = 0 ;for ( int i = 0 ; buf[i] ; ++ i ) {now = next[now][buf[i] - 'a'] ;//printf ( "%d %d %d\n" , ou[now] , in[now] , sum ( in[now] ) ) ;ans += sum ( in[now] ) ;}printf ( "%I64d\n" , ans ) ;}void modify ( int x , int sign ) {int now = word[x] ;if ( a[x] == 0 && sign == -1 || a[x] == 1 && sign == 1 ) return ;if ( a[x] == 0 ) {a[x] = 1 ;add ( ou[now] , 1 ) ;add ( in[now] - 1 , -1 ) ;} else {a[x] = 0 ;add ( ou[now] , -1 ) ;add ( in[now] - 1 , 1 ) ;}}
} ;ac_automaton ac ;
char buf[MAXN] ;
int n , k ;void solve () {char op ;int x ;ac.init () ;For ( i , 1 , k ) {scanf ( "%s" , buf ) ;ac.insert ( buf , i ) ;}ac.build () ;ac.dfs ( ac.root ) ;For ( i , 1 , k ) ac.modify ( i , 1 ) ;while ( n -- ) {scanf ( " %c" , &op ) ;if ( op == '?' ) {scanf ( "%s" , buf ) ;ac.query ( buf ) ;} else {scanf ( "%d" , &x ) ;ac.modify ( x , op == '+' ? 1 : -1 ) ;}}
}int main () {while ( ~scanf ( "%d%d" , &n , &k ) ) solve () ;return 0 ;
}


这篇关于【codeforces】163E. e-Government AC自动机+树状数组的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1139249

相关文章

Java 字符数组转字符串的常用方法

《Java字符数组转字符串的常用方法》文章总结了在Java中将字符数组转换为字符串的几种常用方法,包括使用String构造函数、String.valueOf()方法、StringBuilder以及A... 目录1. 使用String构造函数1.1 基本转换方法1.2 注意事项2. 使用String.valu

JAVA中整型数组、字符串数组、整型数和字符串 的创建与转换的方法

《JAVA中整型数组、字符串数组、整型数和字符串的创建与转换的方法》本文介绍了Java中字符串、字符数组和整型数组的创建方法,以及它们之间的转换方法,还详细讲解了字符串中的一些常用方法,如index... 目录一、字符串、字符数组和整型数组的创建1、字符串的创建方法1.1 通过引用字符数组来创建字符串1.2

vue如何监听对象或者数组某个属性的变化详解

《vue如何监听对象或者数组某个属性的变化详解》这篇文章主要给大家介绍了关于vue如何监听对象或者数组某个属性的变化,在Vue.js中可以通过watch监听属性变化并动态修改其他属性的值,watch通... 目录前言用watch监听深度监听使用计算属性watch和计算属性的区别在vue 3中使用watchE

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

hdu 1166 敌兵布阵(树状数组 or 线段树)

题意是求一个线段的和,在线段上可以进行加减的修改。 树状数组的模板题。 代码: #include <stdio.h>#include <string.h>const int maxn = 50000 + 1;int c[maxn];int n;int lowbit(int x){return x & -x;}void add(int x, int num){while

hdu 3065 AC自动机 匹配串编号以及出现次数

题意: 仍旧是天朝语题。 Input 第一行,一个整数N(1<=N<=1000),表示病毒特征码的个数。 接下来N行,每行表示一个病毒特征码,特征码字符串长度在1—50之间,并且只包含“英文大写字符”。任意两个病毒特征码,不会完全相同。 在这之后一行,表示“万恶之源”网站源码,源码字符串长度在2000000之内。字符串中字符都是ASCII码可见字符(不包括回车)。

Codeforces Round #240 (Div. 2) E分治算法探究1

Codeforces Round #240 (Div. 2) E  http://codeforces.com/contest/415/problem/E 2^n个数,每次操作将其分成2^q份,对于每一份内部的数进行翻转(逆序),每次操作完后输出操作后新序列的逆序对数。 图一:  划分子问题。 图二: 分而治之,=>  合并 。 图三: 回溯:

POJ 1625 自动机

给出包含n个可见字符的字符集,以下所提字符串均由该字符集中的字符构成。给出p个长度不超过10的字符串,求长为m且不包含上述p个字符串的字符串有多少个。 g++提交 int mat[108][108] ;int matn ;int N ;map<char ,int> to ;//ACconst int maxm = 108 ;const int kin

zoj 3228 ac自动机

给出一个字符串和若干个单词,问这些单词在字符串里面出现了多少次。单词前面为0表示这个单词可重叠出现,1为不可重叠出现。 Sample Input ab 2 0 ab 1 ab abababac 2 0 aba 1 aba abcdefghijklmnopqrstuvwxyz 3 0 abc 1 def 1 jmn Sample Output Case 1 1 1 Case 2

Codeforces Round #261 (Div. 2)小记

A  XX注意最后输出满足条件,我也不知道为什么写的这么长。 #define X first#define Y secondvector<pair<int , int> > a ;int can(pair<int , int> c){return -1000 <= c.X && c.X <= 1000&& -1000 <= c.Y && c.Y <= 1000 ;}int m