HDU 2896病毒侵襲 AC自動機

2021-08-11 12:39:01 字數 1033 閱讀 1716

點我看題

題意:給n個模式串,m個主串,問哪些模式串在主串中出現過,輸出出現過的模式串的次序。

分析:ac自動機模板題,開乙個used陣列標記第i個模式串是否在主串中出現過,且每個串的結果直接在query函式中輸出。

#include#include#include#include#include#include#includeusing namespace std;

const int maxn = 5e2+10;

const int maxp = 2e2+10;

const int maxt = 1e4+10;

int n,m;

char p[maxp];

char t[maxt];

int cnt;

setans;

struct aho

void init()

void insert( char buf, int id)

endc[now] = id;

}void build()

}while( !q.empty())}}

}bool used[510];

bool query( char buf, int id)

tmp = fail[tmp];}}

if( !flag)

return false;

printf("web %d:",id);

for( int i = 1; i <= n; i++)

if( used[i])

printf(" %d",i);

puts("");

return true;

}};aho ac;

int main()

ac.build();

scanf("%d",&m);

cnt = 0;

for( int i = 1; i <= m; i++)

printf("total: %d\n",cnt);

}return 0;

}

hdu 2896 病毒侵襲 AC自動機

hdu 2896 題目大意 給出n個模式串,最後給出m個主串 問有主串出現過哪些模式串,最後輸出哪些主串能匹配模式串 解題思路 ac自動機建立字典樹的用w值標記第幾個模式串 定義k值,匹配時若字典樹中的某個結點不等於k且w不為0則記錄該點 有多個主串需要匹配,所以不需要改變w的值,但可以判斷k的值 ...

hdu 2896 病毒侵襲 ac自動機

include include include using namespace std define maxnode 100100 define sigma size 135 int ch maxnode sigma size int f maxnode fail函式 int val maxnode...

AC自動機 病毒侵襲 hdu2896

和hdu2222題相似的水題 1 連著re了好多發,沒想明白,看了一下網上題解才知道,輸入的不一定都是字母,所以next要開100!include include int tot char str 10005 int t int time 100 struct trie queue 100005 s...