-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaho_corasick.cpp
190 lines (153 loc) · 4.96 KB
/
aho_corasick.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
// Aho Corasick
// O(\sum_{i}{|P_i|})で構築
// verified at
// http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=1320
#include <string>
#include <vector>
#include <queue>
#include <cassert>
#include <numeric>
#include <iostream>
#include <algorithm>
class AhoCorasick{
static const int ASIZE = 256;
struct node_t {
int ID;
node_t *failure;
node_t *output;
node_t *next[ASIZE];
std::vector<int> match;
node_t(int id) : ID(id), failure(NULL), output(NULL){
std::fill(next, next + ASIZE, (node_t*)NULL);
}
};
size_t n_size;
size_t length;
node_t *root;
node_t **nodes;
inline node_t *new_node(){
nodes[n_size] = new node_t(n_size);
return nodes[n_size++];
}
public:
AhoCorasick(const std::vector<std::string> &pats) : n_size(0){
length = accumulate(pats.begin(), pats.end(), std::string("")).size();
nodes = new node_t* [length + 1];
root = new_node();
// construct key word tree
for(size_t i = 0; i < pats.size(); i++){
node_t *v = root;
for(size_t j = 0; j < pats[i].size(); j++){
int c = pats[i][j];
if(!v->next[c]) v->next[c] = new_node();
v = v->next[c];
}
v->match.push_back(i);
}
// construct failure link and output link
std::queue<node_t*> que;
root->failure = root;
root->output = root;
que.push(root);
while(!que.empty()){
node_t *p = que.front(); que.pop();
for(int x = 0; x < ASIZE; x++){
if(!p->next[x]) continue;
node_t *v = p->next[x];
node_t *w = p->failure;
if(p == root){
v->failure = root;
v->output = root;
}else{
while(w != root && !w->next[x]) w = w->failure;
v->failure = w->next[x] ? w->next[x] : root;
if(v->failure->match.empty())
v->output = v->failure->output;
else
v->output = v->failure;
}
que.push(v);
}
}
}
~AhoCorasick(){
for(size_t i = 0; i < n_size; i++) delete nodes[i];
delete [] nodes;
}
// initial state is always zero.
size_t state_size() const{ return n_size; }
int init_state() const{ return 0; }
int next_state(size_t state, int c) const{
assert(state < n_size);
node_t *v = nodes[state];
while(v != root && !v->next[c]) v = v->failure;
v = v->next[c] ? v->next[c] : root;
return v->ID;
}
std::vector<int> match(size_t state) const{
assert(state < n_size);
std::vector<int> res;
for(node_t *v = nodes[state]; v != root; v = v->output)
for(size_t i = 0; i < v->match.size(); i++)
res.push_back(v->match[i]);
return res;
}
};
#include <cstring>
#include <tuple>
#include <queue>
using namespace std;
int dist[60][60][110];
int main(){
int N, M, P, sr, sc, gr, gc;
char field[60][60];
int dr[] = {1, 0, -1, 0};
int dc[] = {0, -1, 0, 1};
char dir[] = {'D', 'L', 'U', 'R'};
while(cin >> N >> M && N + M){
for(int i = 0; i < N; i++){
for(int j = 0; j < M; j++){
cin >> field[i][j];
if(field[i][j] == 'S'){
sr = i;
sc = j;
}
if(field[i][j] == 'G'){
gr = i;
gc = j;
}
}
}
cin >> P;
vector<string> ps(P);
for(int i = 0; i < P; i++) cin >> ps[i];
AhoCorasick aho(ps);
memset(dist, -1, sizeof(dist));
queue<tuple<int, int, int>> que;
que.push(make_tuple(sr, sc, aho.init_state()));
dist[sr][sc][aho.init_state()] = 0;
bool ok = false;
while(!que.empty()){
int r, c, s;
std::tie(r, c, s) = que.front(); que.pop();
if(r == gr && c == gc){
cout << dist[r][c][s] << endl;
ok = true;
break;
}
for(int i = 0; i < 4; i++){
int nr = r + dr[i];
int nc = c + dc[i];
int ns = aho.next_state(s, dir[i]);
if(!aho.match(ns).empty()) continue;
if(0 <= nr && nr < N && 0 <= nc && nc < M &&
field[nr][nc] != '#' && dist[nr][nc][ns] == -1)
{
dist[nr][nc][ns] = dist[r][c][s] + 1;
que.push(make_tuple(nr, nc, ns));
}
}
}
if(!ok) cout << -1 << endl;
}
}