SCU 4438 Censor (字串雜湊)

bigbigship發表於2015-10-01

題目連結:傳送門

題意:

給定一個模式串,和一個待處理的串,這個串中的所有模式串給去掉,如果將,去掉一個模式串後形成兩個串,這兩個串拼接在一起後又形成一個新的模式串這個新的模式串也要去掉。

分析:

將處理過的串放入棧中,如果棧頂的子串是一個模式串則去掉。

程式碼如下:

#include <bits/stdc++.h>

using namespace std;

const int maxn = 5e6+10;

typedef unsigned long long LL;

char str[maxn],s[maxn];

const LL HASH = 1e5+7;

int n,m;

LL multi[maxn];

LL Stack[maxn],Hash_str;

char ans[maxn];

inline bool check(int pos){
    if(pos>=n){
        if(Stack[pos]-Stack[pos-n]*multi[n]==Hash_str)
            return true;
    }
    return false;
}

void init(){
    multi[0]=1;
    for(int i=1;i<maxn;i++)
        multi[i]=multi[i-1]*HASH;
}

int main(){
    init();
    while(~scanf("%s%s",str,s)){
        n=strlen(str);
        m=strlen(s);
        Hash_str=0;
        for(int i=0;*(str+i);i++){
            Hash_str=Hash_str*HASH + *(str+i);
        }
        Stack[0]=0;
        int top=0;
        for(int i=0;*(s+i);i++){
            ans[top++]=s[i];
            Stack[top]=Stack[top-1]*HASH + *(s+i);
            if(check(top))
                top-=n;
        }
        for(int i=0;i<top;i++)
            printf("%c",ans[i]);
        puts("");
    }
    return 0;
}

/***
abc
aaabcbc
b
bbb
abc
ab
***/

相關文章