程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> 關於C++ >> HDU 3065 病毒侵襲持續中(AC自動機)

HDU 3065 病毒侵襲持續中(AC自動機)

編輯:關於C++

題意:求n個串在一個很長的串中出現的次數。

思路: 典型的AC自動機模板題。

細節參見代碼:

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define Max(a,b) ((a)>(b)?(a):(b))
#define Min(a,b) ((a)<(b)?(a):(b))
using namespace std;
typedef long long ll;
typedef long double ld;
const ld eps = 1e-9, PI = 3.1415926535897932384626433832795;
const int mod = 1000000000 + 7;
const int INF = 0x3f3f3f3f;
const int MAXS = 1000000*2 + 10;
// & 0x7FFFFFFF
const int seed = 131;
const int SIGMA_SIZE = 199;
const ll INF64 = ll(1e18);
const int maxn = 100;
const int MAXNODE = 1000*55 + 10;
int T,n,m;
int ch[MAXNODE][SIGMA_SIZE];
int f[MAXNODE];    // fail函數
int val[MAXNODE];  // 每個字符串的結尾結點都有一個非0的val
int last[MAXNODE]; // 輸出鏈表的下一個結點
int cnt[MAXS];
int sz;
map ms;
void init() {
    sz = 1;
    memset(ch[0], 0, sizeof(ch[0]));
    memset(cnt, 0, sizeof(cnt[0])*(n+2));
    ms.clear();
}
// 字符c的編號
int idx(char c) {
    return c-'A';
}
// 插入字符串。v必須非0
void _insert(char *s, int v) {
    int u = 0, n = strlen(s);
    for(int i = 0; i < n; i++) {
        int c = idx(s[i]);
        if(!ch[u][c]) {
            memset(ch[sz], 0, sizeof(ch[sz]));
            val[sz] = 0;
            ch[u][c] = sz++;
        }
        u = ch[u][c];
    }
    val[u] = v;
  //  ms[string(s)] = v;
}
  // 遞歸打印以結點j結尾的所有字符串
void print(int j) {
    if(j) {
        cnt[val[j]]++;
        print(last[j]);
    }
}
// 在T中找模板
void _find(char* T) {
    int n = strlen(T);
    int j = 0;   // 當前結點編號,初始為根結點
    for(int i=0;i q;
    f[0] = 0;
    // 初始化隊列
    for(int c = 0; c < SIGMA_SIZE; c++) {
        int u = ch[0][c];
        if(u) { f[u] = 0; q.push(u); last[u] = 0; }
    }
    // 按BFS順序計算fail
    while(!q.empty()) {
        int r = q.front(); q.pop();
        for(int c = 0; c < SIGMA_SIZE; c++) {
            int u = ch[r][c];
            if(!u) continue;
            q.push(u);
            int v = f[r];
            while(v && !ch[v][c]) v = f[v];
            f[u] = ch[v][c];
            last[u] = val[f[u]] ? f[u] : last[f[u]];
        }
    }
}
char buf[1006][55];
char s[2000000 + 10];
int main() {
//    ios::sync_with_stdio(false);
    while(~scanf("%d",&n)) {
        init();
        for(int i=1;i<=n;i++) {
            scanf("%s",buf[i]);
            _insert(buf[i], i);
        }
        getFail();
        scanf("%s",s);
        _find(s);
        for(int i=1;i<=n;i++) {
            if(!cnt[i]) continue;
            printf("%s: %d\n",buf[i],cnt[i]);
        }
    }
    return 0;
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved