JZOJ 6567 字符串

首先要注意到一个简单的性质:\(S,T\) 相似等价于 \({\rm LCP}(S,T) + {\rm LCS}(S,T) \ge m - 1\),其中 \({\rm LCP},{\rm LCS}\) 分别为最长公共前缀和后缀。
\(S,T\) 分别从原串的第 \(s,t\) 个字符起始,则条件即为 \({\rm LCP}(s-m+1,t-m+1) + {\rm LCS}(s,t) \ge m - 1\),其中 \({\rm LCP},{\rm LCS}\) 分别为两个后缀的最长公共前缀和两个前缀的最长公共后缀。

利用 SAM 建出前缀树和后缀树,考虑在前缀树上静态链分治确定 LCA。
对于当前处于不同子树内的前缀 \(i,j\),设 \(\newcommand\len{ {\rm len} } \len\) 为当前 LCA 包含状态的最长长度。
则易知需满足 \({\rm LCS}(i-m+1,j-m+1) \ge m - \len - 1\)
也即后缀 \(i-m+1,j-m+1\) 在后缀树上的 LCA 的长度不小于 \(m - \len - 1\)

考虑枚举 \(i\),在后缀树上倍增求出后缀 \(i-m+1\) 的最浅的满足长度不小于 \(m - \len - 1\) 的祖先,则合法的 \(j-m+1\) 一定也在其子树内。
也就是要求出当前已经处理过的子树中存在的前缀和后缀树上某个子树内的交集。
考虑用一个树状数组维护即可。
(当然你硬要拿二维数点搞我也不拦你)

但是这样只能把 \(j\) 的贡献计算到 \(i\) 上,而且链分治是必须按照一定顺序处理的,所以还要考虑如何把 \(i\) 的贡献计算到 \(j\) 上。
考虑用一个全局的树状数组维护 \(i\)\(j\) 的贡献。
注意会有错算的贡献,要容斥掉。

(话说怀疑全世界只有我一个在后缀树上链分治的时候直接用 vector 维护 $ \rm endpos$ 虽然这样好写点不用再去递归搜一遍)

代码:

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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
#include <cstdio>
#include <vector>
#include <utility>
using namespace std;
const int N = 1e5;
const int LG = 18;
int n,m;
char s[N + 5];
int ans[N + 5];
namespace T2
{
struct node
{
int ch[26];
int fa,len;
} sam[(N << 1) + 5];
int las = 1,tot = 1;
int ed[N + 5],f[LG + 5][(N << 1) + 5];
int id[(N << 1) + 5],sz[(N << 1) + 5];
inline void insert(int x,int pos)
{
int cur = las,p = ++tot;
sam[p].len = sam[cur].len + 1;
for(;cur && !sam[cur].ch[x];cur = sam[cur].fa)
sam[cur].ch[x] = p;
if(!cur)
sam[p].fa = 1;
else
{
int q = sam[cur].ch[x];
if(sam[cur].len + 1 == sam[q].len)
sam[p].fa = q;
else
{
int nxt = ++tot;
sam[nxt] = sam[q],sam[nxt].len = sam[cur].len + 1,sam[p].fa = sam[q].fa = nxt;
for(;cur && sam[cur].ch[x] == q;cur = sam[cur].fa)
sam[cur].ch[x] = nxt;
}
}
ed[pos] = las = p;
}
int to[(N << 1) + 5],pre[(N << 1) + 5],first[(N << 1) + 5];
inline void add(int u,int v)
{
static int tot = 0;
to[++tot] = v,pre[tot] = first[u],first[u] = tot;
}
void dfs(int p)
{
static int tot = 0;
id[p] = ++tot,sz[p] = 1;
for(register int i = first[p];i;i = pre[i])
dfs(to[i]),sz[p] += sz[to[i]];
}
inline void build()
{
for(register int i = 2;i <= tot;++i)
add(f[0][i] = sam[i].fa,i);
for(register int i = 1;i <= LG;++i)
for(register int j = 2;j <= tot;++j)
f[i][j] = f[i - 1][f[i - 1][j]];
dfs(1);
}
inline int get(int p,int d)
{
if(sam[p].len < d)
return 0;
for(register int i = LG;~i;--i)
if(f[i][p] && sam[f[i][p]].len >= d)
p = f[i][p];
return p;
}
}
namespace BIT1
{
#define lowbit(x) ((x) & -(x))
int &n = T2::tot,c[(N << 1) + 5];
inline void update(int x,int k)
{
for(;x <= n;x += lowbit(x))
c[x] += k;
}
inline int query(int x)
{
int ret = 0;
for(;x;x -= lowbit(x))
ret += c[x];
return ret;
}
inline int query(int l,int r)
{
return query(r) - query(l - 1);
}
#undef lowbit
}
namespace BIT2
{
#define lowbit(x) ((x) & -(x))
int &n = T2::tot,c[(N << 1) + 5];
inline void update(int x,int k)
{
for(;x <= n;x += lowbit(x))
c[x] += k;
}
inline int query(int x)
{
int ret = 0;
for(;x;x -= lowbit(x))
ret += c[x];
return ret;
}
inline void update(int l,int r,int k)
{
update(l,k),update(r + 1,-k);
}
#undef lowbit
}
namespace T1
{
struct node
{
int ch[26];
int fa,len;
} sam[(N << 1) + 5];
int las = 1,tot = 1;
int sz[(N << 1) + 5],son[(N << 1) + 5];
int c[N + 5],a[(N << 1) + 5];
vector<int> edp[(N << 1) + 5];
inline void insert(int x,int pos)
{
int cur = las,p = ++tot;
sam[p].len = sam[cur].len + 1;
for(;cur && !sam[cur].ch[x];cur = sam[cur].fa)
sam[cur].ch[x] = p;
if(!cur)
sam[p].fa = 1;
else
{
int q = sam[cur].ch[x];
if(sam[cur].len + 1 == sam[q].len)
sam[p].fa = q;
else
{
int nxt = ++tot;
sam[nxt] = sam[q],sam[nxt].len = sam[cur].len + 1,sam[p].fa = sam[q].fa = nxt;
for(;cur && sam[cur].ch[x] == q;cur = sam[cur].fa)
sam[cur].ch[x] = nxt;
}
}
++sz[las = p],edp[las].push_back(pos);
}
int to[(N << 1) + 5],pre[(N << 1) + 5],first[(N << 1) + 5];
inline void add(int u,int v)
{
static int tot = 0;
to[++tot] = v,pre[tot] = first[u],first[u] = tot;
}
inline void build()
{
T2::build();
for(register int i = 1;i <= tot;++i)
++c[sam[i].len],i > 1 && (add(sam[i].fa,i),1);
for(register int i = 1;i <= n;++i)
c[i] += c[i - 1];
for(register int i = tot;i > 1;--i)
a[c[sam[i].len]--] = i;
for(register int i = tot;i > 1;--i)
{
sz[sam[a[i]].fa] += sz[a[i]];
if(!son[sam[a[i]].fa] || sz[son[sam[a[i]].fa]] < sz[a[i]])
son[sam[a[i]].fa] = a[i];
}
}
void dfs(int p)
{
for(register int i = first[p];i;i = pre[i])
if(to[i] ^ son[p])
{
dfs(to[i]);
for(register vector<int>::iterator it = edp[to[i]].begin();it != edp[to[i]].end();++it)
if(*it >= m)
BIT1::update(T2::id[T2::ed[*it - m + 1]],-1),ans[*it] += BIT2::query(T2::id[T2::ed[*it - m + 1]]);
}
int len = sam[p].len;
if(son[p])
dfs(son[p]);
for(register vector<int>::iterator it = edp[p].begin();it != edp[p].end();++it)
if(*it >= m)
{
int q = T2::ed[*it - m + 1],u = T2::get(q,m - len - 1);
if(u)
BIT2::update(T2::id[u],T2::id[u] + T2::sz[u] - 1,1),
ans[*it] += BIT1::query(T2::id[u],T2::id[u] + T2::sz[u] - 1);
}
for(register vector<int>::iterator it = edp[p].begin();it != edp[p].end();++it)
if(*it >= m)
BIT1::update(T2::id[T2::ed[*it - m + 1]],1),ans[*it] -= BIT2::query(T2::id[T2::ed[*it - m + 1]]);
if(son[p])
{
edp[p].swap(edp[son[p]]);
for(register vector<int>::iterator it = edp[son[p]].begin();it != edp[son[p]].end();++it)
edp[p].push_back(*it);
vector<int>().swap(edp[son[p]]);
}
for(register int i = first[p];i;i = pre[i])
if(to[i] ^ son[p])
{
for(register vector<int>::iterator it = edp[to[i]].begin();it != edp[to[i]].end();++it)
{
edp[p].push_back(*it);
if(*it >= m)
{
int q = T2::ed[*it - m + 1],u = T2::get(q,m - len - 1);
if(u)
BIT2::update(T2::id[u],T2::id[u] + T2::sz[u] - 1,1),
ans[*it] += BIT1::query(T2::id[u],T2::id[u] + T2::sz[u] - 1);
}
}
for(register vector<int>::iterator it = edp[to[i]].begin();it != edp[to[i]].end();++it)
if(*it >= m)
BIT1::update(T2::id[T2::ed[*it - m + 1]],1),ans[*it] -= BIT2::query(T2::id[T2::ed[*it - m + 1]]);
vector<int>().swap(edp[son[p]]);
}
}
}
int main()
{
freopen("string.in","r",stdin),freopen("string.out","w",stdout);
scanf("%d%d%s",&n,&m,s + 1);
for(register int i = 1;i <= n;++i)
T1::insert(s[i] - 'a',i),T2::insert(s[n - i + 1] - 'a',n - i + 1);
T1::build(),T1::dfs(1);
for(register int i = m;i <= n;++i)
printf("%d%c",ans[i] + BIT2::query(T2::id[T2::ed[i - m + 1]])," \n"[i == n]);
}