POJ 1204 ACオートマトン
クリックしてリンクを開く
題意:L*Cの文字列行列、W個の問合せを与え、この列が最初に現れる位置と方向を各問合せに対して出力し、合計8方向をA~Hで表す
考え方:ACオートマトンで素早くマッチングして、細部の処理は特に多くて、問題解を見ないと何度もWAができるはずで、もう一つの処理の非常に巧みなところは、私たちが最初に現れた位置を出力しなければならないことで、ACオートマトンは遡ることができないので、辞書の木の中に串を逆さまに構造して、本当に神で、それから方向を設定する時も逆さまにすればいいです
題意:L*Cの文字列行列、W個の問合せを与え、この列が最初に現れる位置と方向を各問合せに対して出力し、合計8方向をA~Hで表す
考え方:ACオートマトンで素早くマッチングして、細部の処理は特に多くて、問題解を見ないと何度もWAができるはずで、もう一つの処理の非常に巧みなところは、私たちが最初に現れた位置を出力しなければならないことで、ACオートマトンは遡ることができないので、辞書の木の中に串を逆さまに構造して、本当に神で、それから方向を設定する時も逆さまにすればいいです
#include
#include
#include
#include
#include
using namespace std;
typedef long long ll;
const int inf=0x3f3f3f3f;
const int maxn=500010;
const int N=26;
struct node{
node *fail;
node *next[N];
int num;
node(){
fail=NULL;
num=0;
memset(next,NULL,sizeof(next));
}
}*q[maxn];
node *root;
void insert_Trie(char *str,node *root,int id){
node *p=root;
int i=strlen(str)-1;
while(i>=0){
int id=str[i]-'A';
if(p->next[id]==NULL) p->next[id]=new node();
p=p->next[id];i--;
}
p->num=id;
}
void build_ac(node *root){
root->fail=NULL;
int head=0,tail=0;
q[head++]=root;
while(head!=tail){
node *temp=q[tail++];
node *p=NULL;
for(int i=0;inext[i]!=NULL){
if(temp==root) temp->next[i]->fail=root;
else{
p=temp->fail;
while(p!=NULL){
if(p->next[i]!=NULL){
temp->next[i]->fail=p->next[i];
break;
}
p=p->fail;
}
if(p==NULL) temp->next[i]->fail=root;
}
q[head++]=temp->next[i];
}
}
}
}
// , , , , , , , ;
int dir[8][2]={{-1,0},{-1,1},{0,1},{1,1},{1,0},{1,-1},{0,-1},{-1,-1}};
int ans[1010][10];
int L,C,W;
char str[1010][1010];
char str1[10010];
void query(int x,int y,int pos,int id){
node *p=root,*temp;
while(x>=0&&y>=0&&xnext[idid]==NULL&&p!=root) p=p->fail;
p=p->next[idid];
p=(p==NULL)?root:p;
temp=p;
while(temp!=root){
if(temp->num){
int ttt=temp->num;
if(ans[ttt][0]>x||(ans[ttt][0]==x&&ans[ttt][1]>y)){
ans[ttt][0]=x;ans[ttt][1]=y;ans[ttt][2]=id;
}
}
temp=temp->fail;
}
x=x+dir[pos][0];
y=y+dir[pos][1];
}
}
void del(node *p){
if(p==NULL)return ;
for(int i=0;i<26;i++)del(p->next[i]);
delete p;
}
int main(){
while(scanf("%d%d%d",&L,&C,&W)!=-1){
root=new node();
for(int i=0;i