HDU 2222 (AC 자동 기 입문 문제)
6877 단어 ACM-데이터 구조
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define mem(a,b) memset(a,b,sizeof(a))
#define INF 0x7fffffff
typedef long long ll;
using namespace std;
const int kind_num = 26;
struct node{
node *fail;
node *next[kind_num];
int countt;
node(){
fail = NULL;
countt = 0;
memset(next,NULL,sizeof(next));
}
}*q[500010];
char keyword[51];
char str[1000010];
int head,tail;
void Insert(char *str,node *root){
node *p = root;
int i = 0,kind;
while(str[i]){
kind = str[i] - 'a';
if(p -> next[kind] == NULL){
p -> next[kind] = new node();
}
p = p -> next[kind];
i++;
}
p -> countt++;// ++,
}
void build_ac_automation(node *root){
int i;
root -> fail = NULL;
q[head++] = root;
while(head != tail){
node *tmp = q[tail++];
node *p = NULL;
for(int i = 0; i < 26; i++){
if(tmp -> next[i] != NULL){
if(tmp == root) tmp -> next[i] -> fail = root;
else{
p = tmp -> fail;
while(p != NULL){
if(p -> next[i] != NULL){
tmp -> next[i] -> fail = p -> next[i];
break;
}
p = p -> fail;
}
if(p == NULL) tmp -> next[i] -> fail = root;
}
q[head++] = tmp -> next[i];
}
}
}
}
int query(node *root){
int i = 0,cnt = 0,kind;
node *p = root;
while(str[i] != '\0'){
kind = str[i] - 'a';
while(p ->next[kind] == NULL && p != root) p = p -> fail;
p = p -> next[kind];
p = (p == NULL)?root:p;
node *tmp = p;
while(tmp != root && tmp -> countt != -1){
cnt += tmp -> countt;
tmp -> countt = -1;
tmp = tmp -> fail;
}
i++;
}
return cnt;
}
void dele(node *root){
int i;
for(int i = 0; i < kind_num; i++){
if(root -> next[i] != NULL){
dele(root -> next[i]);
}
}
free(root);
}
int main(){
int n,t;
scanf("%d",&t);
while(t--){
head = tail = 0;
node *root = new node();
scanf("%d",&n);
getchar();
for(int i = 0; i < n; i++){
gets(keyword);
Insert(keyword,root);
}
build_ac_automation(root);
scanf("%s",str);
printf("%d
",query(root));
dele(root);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
HDU 6325 Interstellar Travel [돌출]제목 링크 After trying hard for many years, Little Q has finally received an astronaut license. Little Q knows the position ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.