hdu 2896 病毒侵襲 AC自動機

2021-07-15 01:25:40 字數 763 閱讀 1738

ac自動機模板題。匹配哪些病毒的特徵碼在當前模式串中出現過,並將這些出現過的特徵碼從小到大輸出。注意題目已說明不同編號特徵碼不相同。

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

const int maxn=100000+10;

vectorans;

int vis[505];

const int size=128;

struct trie

void init()

void insert(char *s,int num)

tmp=fail[tmp];}}

}};trie ac;

char s[10000+5];

int main()

ac.build();

scanf("%d",&m);

int tot=0;

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

scanf("%s",s);

ans.clear();

memset(vis,0,sizeof(vis));

ac.query(s);

if(ans.size()){

tot++;

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

sort(ans.begin(),ans.end());

for(int j=0;j

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...