zoj -- 3228 Searching the String(AC自动机)

给出一个字符串。有n个询问,0 string表示string在字符串中出现多少次,可以重叠。1 string表示string在字符串中出现多少次,string不能重叠。

http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3228

维护一个last数组,记录该字符串上次出现的位置,根据这个来判断有没有重叠。

//#pragma comment(linker,"/STACK:1024000000,1024000000")
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;

typedef double DB;
typedef long long ll;
typedef unsigned long long ull;
typedef pair PII;

#define pb push_back
#define MP make_pair
#define lson l, m, rt << 1
#define rson m + 1, r, rt << 1 | 1

const double eps = 1e-6;
const int inf = 0x3f3f3f3f;
const int mod = 100000;
const int maxn = 600000 + 10;

char str[100010], ss[100];
int n, op[100010], pos[100010], cas = 0;
int tot[maxn][2], last[maxn];
int d[maxn];

const int max_chd = 26;///字母表大小
struct AC_automata{
    int chd[maxn][max_chd], fail[maxn], cnt[maxn];///trie中的chd数组,fail指针,节点标记(是多少个串的结尾)
    int root, sz;///根节点,trie树大小
    int newnode(){///建立新的节点,返回节点编号
        for(int i=0; i Q;
        while(!Q.empty()) Q.pop();
        fail[root] = root;
        for(int i=0; i= d[tmp]) tot[tmp][1]++, last[tmp] = i;
                }
                tmp = fail[tmp];
            }
        }
        for(int i=0; i


你可能感兴趣的:(AC自动机,zoj)