[关闭]
@ljt12138 2017-03-11T21:54:49.000000Z 字数 23045 阅读 954

后缀自动机学习笔记

算法


主要思想

后缀树和后缀数组是处理字符串的有力武器,但一个更为强大的数据结构——后缀自动机往往更加灵活。字符串S的后缀自动机被定义为一个接受S的所有后缀的有限状态自动机。一个暴力的构造方法是对于S的每个子串建立一个节点,将后缀设为接受节点。然而这样的时空复杂度都达到了。显然是不能接受的。

考虑一个字符串abaabac,当我们用b或者ab去匹配他们时,得到的匹配位置“终点”集合都为,因此转移到达的终点集合都相等。因此可以将他们合并成一个节点。换言之,我们不再维护所有的“子串”,而去维护用子串在原字符串上匹配得到的终点集合作为自动机的状态。可以证明,这样的状态数和转移数都是的,这样构造出的自动机称为最简状态后缀自动机。

终点集合的性质

不难发现,所有的有意义终点集合构成真包含关系,即两个集合要么不相交,要么真包含。我们可以利用包含关系建立一棵树结构,我们称其为Parent树。树上的节点所对应的终点集合真包含其儿子对应的终点集合,且

那么显然也有

同一终集合内字符串长度的性质

我们发现同一终点集合内对应的字符串的长度构成一个区间,记为x对应终点集合内长度最短的字符串,反之,那么有:

也就是说:在Parent树上祖先的max比后代的min小,祖先的集合真包含后代的集合

结构

我们维护的自动机有两个逻辑结构,一个是trans(S, a)表示状态S加上字符a到达的新状态形成的DAG,一个是par(S)形成的Parent树。两个结构的性质有:

构建

构建具体方法见陈立杰的冬令营讲稿。

  1. void push(int x)
  2. {
  3. int p = last, np = ++top; // 新建节点
  4. maxl[np] = maxl[p]+1;
  5. while (p && !chl[p][x]) chl[p][x] = np, p = fa[p]; // 如果还没有连边
  6. if (!p) fa[np] = root; // 到达root
  7. else {
  8. int q = chl[p][x]; // 冲突节点
  9. if (maxl[q] == maxl[p]+1) fa[np] = q; // 如果已经放满,合并状态,这时np在DAG
  10. else { // 中被合并至q,但Parent树中仍保存结构
  11. int nq = new_node(q); // 建立公共祖先
  12. maxl[nq] = maxl[p]+1;
  13. fa[nq] = fa[q], fa[q] = nq, fa[np] = nq;
  14. while (p && chl[p][x] == q) chl[p][x] = nq, p = fa[p]; // 换边
  15. }
  16. }
  17. last = np;
  18. }

应用

USACO牛奶模式

给定一个长度为n的字符串S,和一个正整数k。求在S中出现至少k次的最长子串。

分析与解:

a. SA解法:建立height数组。考虑出现k次在height数组中的形态,由于要最大化公共子串即区间RMQ,最优解一定是长度为k的连续区间。用单调队列维护一个滑动窗口即可。最优复杂度,用DA则是
b. SAM解法:由于在自动机中匹配位置相同的子串被收在一个状态内,一个状态的最优解即为这个状态的max。如何确定出现k次?就是。利用公式(2)预处理节点的Right,然后枚举一遍每个节点即可。由于字符集太大需要用map维护,摊还分析可知map的总操作量是的,因而总复杂度为

SA+DA:

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const int maxn = 21000;
  4. struct suffix_array {
  5. int A[maxn], n, l, sa[maxn], rank[maxn], height[maxn], C[maxn];
  6. struct radix_ele {
  7. int id;
  8. int k[2];
  9. radix_ele(){}
  10. radix_ele(int a, int b, int c) { id = a, k[0] = b, k[1] = c; }
  11. } RE[maxn], RT[maxn];
  12. void radix_sort()
  13. {
  14. for (int y = 1; y >= 0; y--) {
  15. memset(C, 0, sizeof C);
  16. for (int i = 1; i <= n; i++) C[RE[i].k[y]]++;
  17. for (int i = 1; i < maxn; i++) C[i] += C[i-1];
  18. for (int i = n; i >= 1; i--) RT[C[RE[i].k[y]]--] = RE[i];
  19. for (int i = 1; i <= n; i++) RE[i] = RT[i];
  20. }
  21. for (int i = 1; i <= n; i++) {
  22. rank[RE[i].id] = rank[RE[i-1].id];
  23. if (RE[i].k[0] != RE[i-1].k[0] || RE[i].k[1] != RE[i-1].k[1])
  24. rank[RE[i].id]++;
  25. }
  26. }
  27. void calc_sa()
  28. {
  29. for (int i = 1; i <= n; i++) RE[i] = radix_ele(i, A[i], 0);
  30. radix_sort();
  31. for (int i = 1; i < n; i <<= 1) {
  32. for (int j = 1; j <= n; j++) RE[j] = radix_ele(j, rank[j], i+j<=n?rank[i+j]:0);
  33. radix_sort();
  34. }
  35. for (int i = 1; i <= n; i++) sa[rank[i]] = i;
  36. }
  37. void calc_height()
  38. {
  39. int h = 0;
  40. for (int i = 1; i <= n; i++) {
  41. if (rank[i] == 1) h = 0;
  42. else {
  43. int k = sa[rank[i]-1];
  44. if (--h < 0) h = 0;
  45. while (A[i+h] == A[k+h]) h++;
  46. }
  47. height[rank[i]] = h;
  48. }
  49. }
  50. void init()
  51. {
  52. calc_sa();
  53. calc_height();
  54. }
  55. } SA;
  56. int k;
  57. struct p {
  58. int dat, id;
  59. p(){}
  60. p(int a, int b) : dat(a), id(b) {}
  61. };
  62. deque<p> deq;
  63. int main()
  64. {
  65. scanf("%d%d", &SA.n, &k);
  66. for (int i = 1; i <= SA.n; i++)
  67. scanf("%d", &SA.A[i]);
  68. SA.init();
  69. int ans = 0;
  70. for (int i = 1; i <= SA.n; i++) {
  71. while (!deq.empty() && i-deq.front().id+2 > k) deq.pop_front();
  72. while (!deq.empty() && deq.back().dat > SA.height[i]) deq.pop_back();
  73. deq.push_back(p(SA.height[i], i));
  74. if (!deq.empty()) ans = max(ans, deq.front().dat);
  75. }
  76. cout << ans << endl;
  77. return 0;
  78. }

SAM+Map:

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const int MAXN = 20005;
  4. int stk[MAXN*2], top = 0;
  5. int rd[MAXN*2], right_siz[MAXN*2];
  6. struct SAM {
  7. map<int, int> chl[MAXN*2];
  8. int fa[MAXN*2], maxl[MAXN*2], root, top, last;
  9. void init()
  10. {
  11. root = top = last = 1;
  12. memset(fa, 0, sizeof fa);
  13. memset(maxl, 0, sizeof fa);
  14. }
  15. void push(int x)
  16. {
  17. int p = last, np = ++top;
  18. maxl[np] = maxl[last] + 1;
  19. right_siz[np] = 1;
  20. while (p && chl[p][x] == 0) chl[p][x] = np, p = fa[p];
  21. if (!p) fa[np] = root;
  22. else {
  23. int q = chl[p][x];
  24. if (maxl[q] == maxl[p] + 1) fa[np] = q;
  25. else {
  26. int nq = ++top; maxl[nq] = maxl[p] + 1;
  27. chl[nq] = chl[q];
  28. fa[nq] = fa[q], fa[q] = fa[np] = nq;
  29. while (p && chl[p][x] == q) chl[p][x] = nq, p = fa[p];
  30. }
  31. }
  32. last = np;
  33. }
  34. } sam;
  35. void top_sort()
  36. {
  37. memset(rd, 0, sizeof rd);
  38. for (int i = 1; i <= sam.top; i++) rd[sam.fa[i]]++;
  39. for (int i = 1; i <= sam.top; i++) if (rd[i] == 0) stk[++top] = i;
  40. while (top) {
  41. int tp = stk[top--]; right_siz[sam.fa[tp]] += right_siz[tp];
  42. if (--rd[sam.fa[tp]] == 0) stk[++top] = sam.fa[tp];
  43. }
  44. }
  45. int solve()
  46. {
  47. int n, k;
  48. sam.init();
  49. scanf("%d%d", &n, &k);
  50. for (int i = 1; i <= n; i++) {
  51. int u; scanf("%d", &u);
  52. sam.push(u);
  53. }
  54. top_sort();
  55. int ans = 0;
  56. for (int i = 2; i <= sam.top; i++) {
  57. if (right_siz[i] >= k)
  58. ans = max(ans, sam.maxl[i]);
  59. }
  60. return ans;
  61. }
  62. int main()
  63. {
  64. printf("%d", solve());
  65. return 0;
  66. }
  67. // 最终的树是信息合并过的树,因此维护right必须在加入节点时就+1

BZOJ3238: [Ahoi2013]差异

http://www.lydsy.com/JudgeOnline/upload/201306/1(4).jpg

SAM解法:前面两项只和长度有关很容易O(n)或O(1)做,那后面那个呢?展开看,就是求任意两个不相同后缀的最长公共前缀的和。这里需要一个重要的性质:将原串逆序插入后缀自动机得到一颗后缀树。而后缀树上两个元素的后缀是他们的LCA。显然我们树形dp设当前节点为LCA分别计算即可。元素两两相乘计算量很大怎么办啊??用一下乘法分配率不就好了吗

对于节点x,flag表示当前节点有没有后缀。我们要计算:

这也就是

  1. /**************************************************************
  2. Problem: 3238
  3. User: ljt12138
  4. Language: C++
  5. Result: Accepted
  6. Time:3580 ms
  7. Memory:131176 kb
  8. ****************************************************************/
  9. #include <bits/stdc++.h>
  10. using namespace std;
  11. const int MAXN = 500005*2, S = 26;
  12. long long right_siz[MAXN];
  13. struct SAM {
  14. int chl[MAXN][S], fa[MAXN], maxl[MAXN];
  15. int root, top, last;
  16. void init()
  17. {
  18. memset(chl, 0, sizeof chl);
  19. memset(fa, 0, sizeof fa);
  20. memset(maxl, 0, sizeof maxl);
  21. root = top = last = 1;
  22. }
  23. void push(int x)
  24. {
  25. int p = last, np = ++top; maxl[np] = maxl[p] + 1, right_siz[np]++;
  26. while (p && !chl[p][x]) chl[p][x] = np, p = fa[p];
  27. if (!p) fa[np] = root;
  28. else {
  29. int q = chl[p][x];
  30. if (maxl[q] == maxl[p] + 1) fa[np] = q;
  31. else {
  32. int nq = ++top; memcpy(chl[nq], chl[q], sizeof chl[q]);
  33. maxl[nq] = maxl[p] + 1, fa[nq] = fa[q], fa[q] = fa[np] = nq;
  34. while (p && chl[p][x] == q) chl[p][x] = nq, p = fa[p];
  35. }
  36. }
  37. last = np;
  38. }
  39. } sam;
  40. char str[MAXN];
  41. struct node {
  42. int to, next;
  43. } edge[MAXN];
  44. int head[MAXN], top = 0;
  45. void push(int i, int j)
  46. { ++top, edge[top] = (node) {j, head[i]}, head[i] = top; }
  47. long long ans = 0;
  48. void dfs(int nd)
  49. {
  50. long long sum = right_siz[nd];
  51. for (int i = head[nd]; i; i = edge[i].next)
  52. dfs(edge[i].to), right_siz[nd] += right_siz[edge[i].to], sum += right_siz[edge[i].to]*right_siz[edge[i].to];
  53. ans += (right_siz[nd]*right_siz[nd]-sum)*sam.maxl[nd];
  54. }
  55. void work()
  56. {
  57. memset(head, 0, sizeof head);
  58. sam.init();
  59. scanf("%s", str);
  60. for (int i = strlen(str)-1; i >= 0; i--)
  61. sam.push(str[i]-'a');
  62. for (int i = 1; i <= sam.top; i++)
  63. if (sam.fa[i]) push(sam.fa[i], i);
  64. int n = strlen(str);
  65. dfs(sam.root);
  66. long long ret = 0;
  67. for (long long i = n-1; i >= 1; i--) ret += i*(i+1)+(1+i)*i/2;
  68. printf("%lld\n", ret-ans);
  69. }
  70. int main()
  71. {
  72. work();
  73. return 0;
  74. }
  75. 

ZJOI2015 诸神眷顾的幻想乡

给定一个叶节点不超过20的无根树,每个节点有一个字母。问树上路径形成的本质不同的字符串的个数。

广义后缀自动机裸题。从每个叶节点做bfs,记录父亲的状态从而插入建立后缀自动机。我们知道一个后缀自动机本质不同的子串个数为 ,或者DAG上dp即可。

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const int MAXN = 100001*20, S = 10;
  4. struct SAM {
  5. int chl[MAXN][S], fa[MAXN], maxl[MAXN];
  6. int top, root, last;
  7. void init()
  8. {
  9. top = root = last = 1;
  10. memset(chl, 0, sizeof chl);
  11. memset(fa, 0, sizeof fa);
  12. memset(maxl, 0, sizeof maxl);
  13. }
  14. void push(int stat, int x)
  15. {
  16. int p = stat, np = ++top; maxl[np] = maxl[p] + 1;
  17. while (p && !chl[p][x]) chl[p][x] = np, p = fa[p];
  18. if (!p) fa[np] = root;
  19. else {
  20. int q = chl[p][x];
  21. if (maxl[q] == maxl[p] + 1) fa[np] = q;
  22. else {
  23. int nq = ++top; maxl[nq] = maxl[p] + 1;
  24. memcpy(chl[nq], chl[q], sizeof chl[q]);
  25. fa[nq] = fa[q], fa[q] = fa[np] = nq;
  26. while (p && chl[p][x] == q) chl[p][x] = nq, p = fa[p];
  27. }
  28. }
  29. last = np;
  30. }
  31. }sam;
  32. queue<int> que;
  33. int stat[102400], rd[102400], col[102400];
  34. struct node {
  35. int to, next;
  36. } edge[202400];
  37. int head[102400], top = 0;
  38. void push(int i, int j)
  39. { rd[i]++, ++top, edge[top] = (node) {j, head[i]}, head[i] = top; }
  40. void bfs(int nd)
  41. {
  42. //printf("BFS : %d\n", nd);
  43. memset(stat, 0, sizeof stat);
  44. stat[nd] = 1;
  45. que.push(nd);
  46. while (!que.empty()) {
  47. int tp = que.front(); que.pop();
  48. sam.push(stat[tp], col[tp]);
  49. //printf("%d -- %d--+%d-->%d\n", tp, stat[tp], col[tp], sam.last);
  50. for (int i = head[tp]; i; i = edge[i].next)
  51. if (!stat[edge[i].to])
  52. stat[edge[i].to] = sam.last, que.push(edge[i].to);
  53. }
  54. }
  55. int n, c;
  56. void solve()
  57. {
  58. sam.init();
  59. scanf("%d%d", &n, &c);
  60. for (int i = 1; i <= n; i++)
  61. scanf("%d", &col[i]);
  62. for (int i = 1; i < n; i++) {
  63. int u, v; scanf("%d%d", &u, &v);
  64. push(u, v); push(v, u);
  65. }
  66. for (int i = 1; i <= n; i++)
  67. if (rd[i] == 1)
  68. bfs(i);
  69. long long ans = 0;
  70. for (int i = 2; i <= sam.top; i++)
  71. ans += sam.maxl[i] - sam.maxl[sam.fa[i]];
  72. printf("%lld", ans);
  73. }
  74. int main()
  75. {
  76. solve();
  77. return 0;
  78. }

POI2000 公共串

给你个长度不超过2000的字符串,求最长公共子串。

SAM解法:只要在匹配的时候记录每个节点对于第i个串匹配的最长距离,然后xjb取max和min就好了。

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const int MAXN = 2005*2, S = 26;
  4. struct SAM {
  5. int chl[MAXN][S], fa[MAXN], maxl[MAXN];
  6. int top, root, last;
  7. void clear()
  8. { top = root = last = 1; }
  9. SAM()
  10. { clear(); }
  11. void push(int x)
  12. {
  13. int p = last, np = ++top; maxl[np] = maxl[p]+1;
  14. while (p && !chl[p][x]) chl[p][x] = np, p = fa[p];
  15. if (!p) fa[np] = root;
  16. else {
  17. int q = chl[p][x];
  18. if (maxl[q] == maxl[p]+1) fa[np] = q;
  19. else {
  20. int nq = ++top; maxl[nq] = maxl[p] + 1;
  21. memcpy(chl[nq], chl[q], sizeof chl[q]);
  22. fa[nq] = fa[q], fa[q] = fa[np] = nq;
  23. while (p && chl[p][x] == q) chl[p][x] = nq, p = fa[p];
  24. }
  25. }
  26. last = np;
  27. }
  28. } sam;
  29. int n;
  30. int match_max[MAXN*2][10]; // 第j个串匹配到自动机上i节点时最长长度
  31. char str[MAXN][10];
  32. void work()
  33. {
  34. scanf("%d", &n);
  35. scanf("%s", str[1]+1);
  36. for (char *p = str[1]+1; *p != '\0'; p++) sam.push(*p-'a');
  37. for (int i = 2; i <= n; i++) {
  38. scanf("%s", str[i]+1);
  39. int nd = sam.root, len = strlen(str[i]+1), mcd = 0;
  40. for (int j = 1; j <= len; j++) {
  41. if (sam.chl[nd][str[i][j]-'a']) {
  42. nd = sam.chl[nd][str[i][j]-'a'], mcd++;
  43. } else {
  44. while (nd && !sam.chl[nd][str[i][j]-'a']) nd = sam.fa[nd];
  45. if (nd) mcd = sam.maxl[nd] + 1, nd = sam.chl[nd][str[i][j]-'a'];
  46. else nd = sam.root, mcd = 0;
  47. }
  48. for (int k = nd; k; k = sam.fa[k]) match_max[k][i] = max(match_max[k][i], min(sam.maxl[k],mcd));
  49. }
  50. }
  51. int ans = 0;
  52. for (int i = 2; i <= sam.top; i++) {
  53. int cnt = INT_MAX;
  54. for (int j = 2; j <= n; j++) cnt = min(cnt, match_max[i][j]);
  55. ans = max(ans, cnt);
  56. }
  57. cout << ans << endl;
  58. }
  59. int main()
  60. {
  61. work();
  62. return 0;
  63. }
  64. /*Description
  65. 给出几个由小写字母构成的单词,求它们最长的公共子串的长度。
  66. 任务:
  67. l 读入单词
  68. l 计算最长公共子串的长度
  69. l 输出结果
  70. Input
  71. 文件的第一行是整数 n,1<=n<=5,表示单词的数量。接下来n行每行一个单词,只由小写字母组成,单词的长度至少为1,最大为2000。
  72. Output
  73. 仅一行,一个整数,最长公共子串的长度。
  74. */

APIO2014 回文串

给定一个字符串,求一个回文子串,最大化 为出现次数。

首先我们用manacher算法求出本质不同的回文串。由于manacher的复杂度为,回文串个数为。我们一个个询问其出现次数即可。现在问题转化为了对于一个子串,要在 的时间内求出其出现次数。

首先我们预处理出在后缀自动机中的位置,那么 就是parent树上最后一个maxl大于l-r+1的节点。用倍增处理即可。

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const int MAXN = 300005*2, S = 26;
  4. int pos[MAXN]; // S[1..r]对应状态
  5. int fa[MAXN][21];
  6. char str[MAXN];
  7. int right_siz[MAXN];
  8. int stk[MAXN], top = 0, rd[MAXN];
  9. struct SAM {
  10. int chl[MAXN][S], fa[MAXN], maxl[MAXN];
  11. int top, root, last;
  12. void clear()
  13. {
  14. top = root = last = 1;
  15. memset(chl, 0, sizeof chl), memset(fa, 0, sizeof fa), memset(maxl, 0, sizeof maxl);
  16. }
  17. SAM() { clear(); }
  18. void push(int x)
  19. {
  20. int p = last, np = ++top; maxl[np] = maxl[p] + 1, right_siz[np]++;
  21. while (p && !chl[p][x]) chl[p][x] = np, p = fa[p];
  22. if (!p) fa[np] = root;
  23. else {
  24. int q = chl[p][x];
  25. if (maxl[q] == maxl[p] + 1) fa[np] = q;
  26. else {
  27. int nq = ++top; maxl[nq] = maxl[p]+1;
  28. memcpy(chl[nq], chl[q], sizeof chl[q]);
  29. fa[nq] = fa[q], fa[q] = fa[np] = nq;
  30. while (p && chl[p][x] == q) chl[p][x] = nq, p = fa[p];
  31. }
  32. }
  33. last = np;
  34. }
  35. } sam;
  36. void top_sort()
  37. {
  38. for (int i = 1; i <= sam.top; i++) rd[sam.fa[i]]++;
  39. for (int i = 1; i <= sam.top; i++) if (rd[i] == 0) stk[++top] = i;
  40. while (top) {
  41. int t = stk[top--]; rd[sam.fa[t]]--, right_siz[sam.fa[t]] += right_siz[t];
  42. if (rd[sam.fa[t]] == 0) stk[++top] = sam.fa[t];
  43. }
  44. }
  45. void init()
  46. {
  47. scanf("%s", str+1);
  48. for (char *p = str+1; *p != '\0'; ++p)
  49. sam.push(*p-'a');
  50. int len = strlen(str+1);
  51. for (int i = 1, nd = sam.root; i <= len; i++) {
  52. nd = sam.chl[nd][str[i]-'a'];
  53. pos[i] = nd;
  54. }
  55. for (int i = 1; i <= sam.top; i++) fa[i][0] = sam.fa[i];
  56. for (int j = 1; j <= 20; j++)
  57. for (int i = 1; i <= sam.top; i++)
  58. fa[i][j] = fa[fa[i][j-1]][j-1];
  59. top_sort(); // Count right_siz
  60. }
  61. long long ans = 0;
  62. void query(int i, int j)
  63. {
  64. int nd = pos[j];
  65. for (int k = 20; k >= 0; k--)
  66. if (sam.maxl[fa[nd][k]] >= j-i+1)
  67. nd = fa[nd][k];
  68. ans = max(ans, (long long)(j-i+1)*right_siz[nd]);
  69. }
  70. int p[MAXN];
  71. void work()
  72. {
  73. int len = strlen(str+1);
  74. int id = 0, mx = 0; // manacher
  75. str[0] = '$';
  76. for (int i = 1; i <= len; i++) {
  77. if (mx > i) p[i] = min(p[id-(i-id)], mx-i); else p[i] = 1, query(i, i);
  78. while (str[i-p[i]] == str[i+p[i]]) query(i-p[i], i+p[i]), p[i]++;
  79. if (i+p[i] > mx) id = i, mx = i+p[i];
  80. }
  81. id = mx = 0;
  82. for (int i = 1; i <= len; i++) {
  83. if (mx > i) p[i] = min(p[id-(i-id)], mx-i); else p[i] = 0;
  84. while (str[i-p[i]] == str[i+p[i]+1]) query(i-p[i], i+p[i]+1), p[i]++;
  85. if (i+p[i] > mx) id = i, mx = i+p[i];
  86. }
  87. cout << ans << endl;
  88. }
  89. int main()
  90. {
  91. init();
  92. work();
  93. return 0;
  94. }

HAOI2016找相同字符

给定两个串S1,S2,统计他们的公共子串总数。两个子串不同,当且仅当长度不同或出现位置不同。

SA解法:将S1和S2用一个'#'隔开,求出height数组,由于公共子串是后缀的前缀,因此答案就是所有前一半的后缀和后一半的后缀的lcp的和。用单调栈扫两遍记录答案即可。最优复杂度

SAM解法:这个做法比较鬼畜。先把第一个串建立后缀自动机,再把第二个串在上面跑。到达一个状态x时匹配长度为len对答案的贡献分为两部分:

  1. 当前位置的收获
  2. 由于匹配了当前位置,自然匹配了父亲节点,就有

第一部分为,第二部分可以拓扑排序后 预处理。总复杂度为

SA(DA)+单调栈,配合一些常数优化的技巧:

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const int maxn = 400005;
  4. struct SA {
  5. int A[maxn], sa[maxn], rank[maxn], C[maxn], height[maxn], n;
  6. struct radix_ele {
  7. int id;
  8. int k[2];
  9. radix_ele() {}
  10. radix_ele(int a, int b, int c):id(a){ k[0] = b, k[1] = c; }
  11. } RE[maxn], RT[maxn];
  12. void radix_sort()
  13. {
  14. for (register int y = 1; y >= 0; y--) {
  15. memset(C, 0, sizeof C);
  16. for (register int i = 1; i <= n; i++) C[RE[i].k[y]]++;
  17. for (register int i = 1; i < maxn; i++) C[i] += C[i-1];
  18. for (register int i = n; i >= 1; i--) RT[C[RE[i].k[y]]--] = RE[i];
  19. for (register int i = 1; i <= n; i++) RE[i] = RT[i];
  20. }
  21. for (register int i = 1; i <= n; i++) {
  22. rank[RE[i].id] = rank[RE[i-1].id];
  23. if (RE[i].k[0] != RE[i-1].k[0] || RE[i].k[1] != RE[i-1].k[1])
  24. rank[RE[i].id]++;
  25. }
  26. }
  27. void calc_rank()
  28. {
  29. for (int i = 1; i <= n; i++) RE[i] = radix_ele(i, A[i], 0);
  30. radix_sort();
  31. for (register int k = 1; k < n; k <<= 1) {
  32. for (register int i = 1; i <= n; i++) RE[i] = radix_ele(i, rank[i], i+k<=n?rank[i+k]:0);
  33. radix_sort();
  34. }
  35. for (register int i = 1; i <= n; i++) sa[rank[i]] = i;
  36. }
  37. void calc_height()
  38. {
  39. int h = 0;
  40. for (int i = 1; i <= n; i++) {
  41. if (rank[i] == 1) h = 0;
  42. else {
  43. int k = sa[rank[i]-1];
  44. if (--h < 0) h = 0;
  45. while (A[i+h] == A[k+h]) h++;
  46. }
  47. height[rank[i]] = h;
  48. }
  49. }
  50. inline void init()
  51. {
  52. calc_rank();
  53. calc_height();
  54. }
  55. } SA;
  56. int n1, n2;
  57. char str1[200005], str2[200005];
  58. struct mono_stack {
  59. struct ele {
  60. int dat, cnt;
  61. ele(){}
  62. ele(int a, int b):dat(a), cnt(b){}
  63. } stk[400005];
  64. int top;
  65. long long ans;
  66. mono_stack():ans(0){ top = 0; }
  67. void init()
  68. {
  69. ans = top = 0;
  70. }
  71. inline void push(int i, int put) // put 是否放入
  72. {
  73. int cnt = put;
  74. for (; top && stk[top].dat >= i; top--) {
  75. cnt += stk[top].cnt;
  76. ans -= stk[top].cnt*(stk[top].dat - i);
  77. }
  78. ans += put*i;
  79. if (cnt) stk[++top] = ele(i, cnt);
  80. }
  81. }stk;
  82. int main()
  83. {
  84. gets(str1);
  85. gets(str2);
  86. n1 = strlen(str1), n2 = strlen(str2);
  87. SA.n = n1 + n2 + 1;
  88. for (register int i = 1; i <= n1; i++) SA.A[i] = str1[i-1] - 'a' + 1; SA.A[n1+1] = 27;
  89. for (register int i = 1; i <= n2; i++) SA.A[n1+1+i] = str2[i-1] - 'a' + 1;
  90. SA.init();
  91. long long ans = 0;
  92. stk.init();
  93. for (register int i = 1; i < SA.n; i++) {
  94. if (SA.sa[i] <= n1) ans += stk.ans, stk.push(SA.height[i+1], 0);
  95. else stk.push(SA.height[i+1], 1);
  96. }
  97. stk.init();
  98. for (register int i = 1; i < SA.n; i++) {
  99. if (SA.sa[i] > n1+1) ans += stk.ans, stk.push(SA.height[i+1], 0);
  100. else stk.push(SA.height[i+1], 1);
  101. }
  102. cout << ans << endl;
  103. return 0;
  104. }

SAM:

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const int MAXN = 200005*2, S = 26;
  4. int right_siz[MAXN];
  5. struct SAM {
  6. int chl[MAXN][S], fa[MAXN], maxl[MAXN];
  7. int top, root, last;
  8. void clear()
  9. { top = root = last = 1; }
  10. SAM()
  11. { clear(); }
  12. void push(int x)
  13. {
  14. int p = last, np = ++top; maxl[np] = maxl[p] + 1; right_siz[np]++;
  15. while (p && !chl[p][x]) chl[p][x] = np, p = fa[p];
  16. if (!p) fa[np] = root;
  17. else {
  18. int q = chl[p][x];
  19. if (maxl[q] == maxl[p] + 1) fa[np] = q;
  20. else {
  21. int nq = ++top; maxl[nq] = maxl[p] + 1;
  22. memcpy(chl[nq], chl[q], sizeof chl[q]);
  23. fa[nq] = fa[q], fa[q] = fa[np] = nq;
  24. while (p && chl[p][x] == q) chl[p][x] = nq, p = fa[p];
  25. }
  26. }
  27. last = np;
  28. }
  29. } sam;
  30. char s1[MAXN], s2[MAXN];
  31. int stk[MAXN], top = 0;
  32. int rd[MAXN];
  33. int topo[MAXN], tp_top = 0;
  34. int canc[MAXN];
  35. int vis[MAXN];
  36. void dfs(int nd, string str)
  37. {
  38. printf("Id = %d, pre = %d, dis = %d, right = %d, cacc = %d\n", nd, sam.fa[nd], sam.maxl[nd], right_siz[nd], canc[nd]);
  39. vis[nd] = 1;
  40. for (int i = 0; i < S; i++)
  41. if (sam.chl[nd][i])
  42. printf("-+%c-> %d\n", i+'a', sam.chl[nd][i]);
  43. for (int i = 0; i < S; i++)
  44. if (sam.chl[nd][i] && !vis[sam.chl[nd][i]])
  45. dfs(sam.chl[nd][i], str+char(i+'a'));
  46. }
  47. void top_sort()
  48. {
  49. for (int i = 1; i <= sam.top; i++) rd[sam.fa[i]]++;
  50. for (int i = 1; i <= sam.top; i++) if (rd[i] == 0) stk[++top] = i;
  51. while (top) {
  52. int t = stk[top--]; topo[++tp_top] = t, rd[sam.fa[t]]--;
  53. if (rd[sam.fa[t]] == 0) stk[++top] = sam.fa[t];
  54. }
  55. for (int i = 1; i <= tp_top; i++) right_siz[sam.fa[topo[i]]] += right_siz[topo[i]];
  56. for (int i = tp_top; i >= 1; i--)
  57. if (topo[i] != sam.root && sam.fa[topo[i]] != sam.root)
  58. canc[topo[i]] = canc[sam.fa[topo[i]]] + (sam.maxl[sam.fa[topo[i]]]-sam.maxl[sam.fa[sam.fa[topo[i]]]])*right_siz[sam.fa[topo[i]]];
  59. }
  60. void work()
  61. {
  62. scanf("%s%s", s1, s2);
  63. for (char *p = s1; *p != '\0'; p++) sam.push(*p-'a');
  64. top_sort();
  65. int nd = sam.root, len = 0;
  66. long long ans = 0;
  67. for (char *p = s2; *p != '\0'; p++) {
  68. if (sam.chl[nd][*p-'a']) nd = sam.chl[nd][*p-'a'], len++;
  69. else {
  70. while (nd && !sam.chl[nd][*p-'a']) nd = sam.fa[nd];
  71. if (!nd) nd = sam.root, len = 0;
  72. else len = sam.maxl[nd]+1, nd = sam.chl[nd][*p-'a'];
  73. }
  74. ans += canc[nd] + (len-sam.maxl[sam.fa[nd]])*right_siz[nd];
  75. }
  76. cout << ans << endl;
  77. }
  78. int main()
  79. {
  80. work();
  81. return 0;
  82. }

BZOJ 2555: SubString

给你一个字符串init,要求你支持两个操作
(1):在当前字符串的后面插入一个字符串
(2):询问字符串s在当前字符串中出现了几次?(作为连续子串)
你必须在线支持这些操作。

SAM+LCT解法:由于SAM是一个在线结构,只要动态维护right集合大小,再暴力匹配后查询right集合大小即可。

用lct维护时的技巧:由于涉及有根树换根,自底向上传送比较困难,考虑自顶向下维护right。操作分别是:

: 先连接,access(y),splay(y),将y和y的左子树siz都加上siz[x],可以用lazy_tag实现。

:先切割,access(y),splay(y),将y和y的左子树都减去siz[x],仍然lazy_tag。

写的时候一定要小心再小心,不然一上午就荒废了。别问我是怎么知道的

  1. /**************************************************************
  2. Problem: 2555
  3. User: ljt12138
  4. Language: C++
  5. Result: Accepted
  6. Time:26356 ms
  7. Memory:404428 kb
  8. ****************************************************************/
  9. #include <bits/stdc++.h>
  10. using namespace std;
  11. const int MAXN = 1600002, S = 26;
  12. struct LCT {
  13. int chl[MAXN][2], fa[MAXN], siz[MAXN], flag[MAXN], rev[MAXN], add[MAXN];
  14. int stk[MAXN];
  15. int root, top;
  16. void clear()
  17. { root = top = 0; }
  18. LCT()
  19. { clear(); }
  20. bool isrt(int nd)
  21. { return chl[fa[nd]][0] != nd && chl[fa[nd]][1] != nd; }
  22. void pdw(int nd)
  23. {
  24. int &lc = chl[nd][0], &rc = chl[nd][1];
  25. if (lc) rev[lc] ^= rev[nd], add[lc] += add[nd];
  26. if (rc) rev[rc] ^= rev[nd], add[rc] += add[nd];
  27. if (rev[nd]) rev[nd] = 0, swap(lc, rc);
  28. if (add[nd]) siz[nd] += add[nd], add[nd] = 0;
  29. }
  30. void zig(int nd)
  31. {
  32. int p = fa[nd], g = fa[p];
  33. int tp = chl[p][0] != nd, tg = chl[g][0] != p, son = chl[nd][tp^1];
  34. if (!isrt(p)) chl[g][tg] = nd;
  35. chl[nd][tp^1] = p, chl[p][tp] = son;
  36. fa[nd] = g, fa[p] = nd, fa[son] = p;
  37. }
  38. void splay(int nd)
  39. {
  40. int top = 0; stk[++top] = nd;
  41. for (int x = nd; !isrt(x); x = fa[x])
  42. stk[++top] = fa[x];
  43. while (top) pdw(stk[top--]);
  44. while (!isrt(nd)) {
  45. int p = fa[nd], g = fa[p];
  46. int tp = chl[p][0] != nd, tg = chl[g][0] != p;
  47. if (isrt(p)) { zig(nd); break; }
  48. else if (tp == tg) zig(p), zig(nd);
  49. else zig(nd), zig(nd);
  50. }
  51. }
  52. void dfs(int nd, int tab)
  53. {
  54. if (!nd) return;
  55. for (int i = 1; i <= tab; i++) putchar(' ');
  56. printf("nd = %d, flag = %d, siz = %d, lc = %d, rc = %d, fa = %d, rev = %d\n", nd, flag[nd], siz[nd], chl[nd][0], chl[nd][1], fa[nd], rev[nd]);
  57. dfs(chl[nd][0], tab+2);
  58. dfs(chl[nd][1], tab+2);
  59. }
  60. void access(int x)
  61. {
  62. for (int y = 0; x; x = fa[y = x])
  63. splay(x), chl[x][1] = y;
  64. }
  65. void mkt(int x)
  66. { access(x), splay(x), rev[x] ^= 1; }
  67. void link(int x, int y)
  68. { mkt(x); splay(x); fa[x] = y; }
  69. void cut(int x, int y)
  70. { mkt(x), access(y), splay(y), fa[x] = chl[y][0] = 0;}
  71. void lct_link(int x, int y) // x->y
  72. {
  73. link(x, y), mkt(1);
  74. access(y), splay(y), siz[y] += siz[x];
  75. if (chl[y][0]) add[chl[y][0]] += siz[x];
  76. }
  77. void lct_cut(int x, int y) // cut x->y
  78. {
  79. cut(x, y), mkt(1);
  80. access(y), splay(y), siz[y] -= siz[x];
  81. if (chl[y][0]) add[chl[y][0]] -= siz[x];
  82. }
  83. void set_flag(int x)
  84. { mkt(x), splay(x), siz[x] = 1; }
  85. int find_fa(int x)
  86. {
  87. access(x);
  88. while (!isrt(x)) x = fa[x];
  89. return x;
  90. }
  91. int query(int nd)
  92. {
  93. mkt(nd), splay(nd);
  94. return siz[nd];
  95. }
  96. } lct;
  97. struct SAM {
  98. int chl[MAXN*2][S], fa[MAXN*2], maxl[MAXN*2];
  99. int top, last, root;
  100. void clear()
  101. { top = last = root = 1; }
  102. SAM()
  103. { clear(); }
  104. void push(int x)
  105. {
  106. int p = last, np = ++top; maxl[np] = maxl[p] + 1; lct.set_flag(np);
  107. while (p && !chl[p][x]) chl[p][x] = np, p = fa[p];
  108. if (!p) fa[np] = root, lct.lct_link(np, root);
  109. else {
  110. int q = chl[p][x];
  111. if (maxl[q] == maxl[p] + 1) fa[np] = q, lct.lct_link(np, q);
  112. else {
  113. int nq = ++top; maxl[nq] = maxl[p] + 1;
  114. memcpy(chl[nq], chl[q], sizeof chl[q]);
  115. lct.lct_link(nq, fa[q]), fa[nq] = fa[q];
  116. lct.lct_cut(q, fa[q]), lct.lct_link(q, nq), fa[q] = nq;
  117. lct.lct_link(np, nq), fa[np] = nq;
  118. while (p && chl[p][x] == q) chl[p][x] = nq, p = fa[p];
  119. }
  120. }
  121. last = np;
  122. }
  123. } sam;
  124. char str[MAXN*2];
  125. int q, mask = 0;
  126. void decode(int mask)
  127. {
  128. int len = strlen(str);
  129. for (int j = 0; j < len; j++) {
  130. mask = (mask*131+j)%len;
  131. swap(str[j], str[mask]);
  132. }
  133. }
  134. void get_str(char str[])
  135. {
  136. scanf("%s", str);
  137. decode(mask);
  138. }
  139. char opt[10];
  140. int main()
  141. {
  142. scanf("%d", &q);
  143. scanf("%s", str);
  144. for (char *p = str; *p != '\0'; p++)
  145. sam.push(*p-'A');
  146. for (int i = 1; i <= q; i++) {
  147. scanf("%s", opt);
  148. if (opt[0] == 'A') {
  149. get_str(str);
  150. for (char *p = str; *p != '\0'; p++)
  151. sam.push(*p-'A');
  152. } else {
  153. get_str(str);
  154. int nd = sam.root, flag = 0;
  155. for (char *p = str; *p != '\0'; p++) {
  156. if (!sam.chl[nd][*p-'A']) {flag = 1; break; }
  157. else nd = sam.chl[nd][*p-'A'];
  158. }
  159. if (flag) puts("0");
  160. else {
  161. int ans = lct.query(nd);
  162. printf("%d\n", ans);
  163. mask ^= ans;
  164. }
  165. }
  166. }
  167. return 0;
  168. }

NOI2015 品酒大会

给你一个长度为的字符串,每个后缀有一个权值。,回答:

  1. 满足的后缀个数
  2. 满足的后缀权值之积的最大值

SA解法:SA配合并查集。
SAM解法:将串逆序插入SAM得到后缀树,然后后缀树上dp即可。
我们知道一个串逆序插入后缀树如同aabb插入为bbaa,每一个前缀都是原串的后缀,因此加入时打过flag的节点都是后缀标记的位置。节点x对应的是原串的字符串末尾长度构成的后缀。

嘴巴AC倒是挺容易,然后一下午就没了

几个细节:

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const int MAXN = 600005, S = 26;
  4. struct SAM {
  5. int chl[MAXN][S], fa[MAXN], maxl[MAXN], flag[MAXN],vis[MAXN];
  6. int top, last, root;
  7. void clear()
  8. { top = last = root = 1; }
  9. SAM()
  10. { clear(); }
  11. void dfs(int nd)
  12. {
  13. if (!nd || vis[nd]) return;
  14. vis[nd] = 1;
  15. printf("nd = %d, fa = %d, maxl = %d, flag = %d\n", nd, fa[nd], maxl[nd], flag[nd]);
  16. for (int i = 0; i < S; i++)
  17. dfs(chl[nd][i]);
  18. }
  19. void push(int x)
  20. {
  21. int p = last, np = ++top; maxl[np] = maxl[p] + 1, flag[np] = 1;
  22. while (p && !chl[p][x]) chl[p][x] = np, p = fa[p];
  23. if (!p) fa[np] = root;
  24. else {
  25. int q = chl[p][x];
  26. if (maxl[q] == maxl[p] + 1) fa[np] = q;
  27. else {
  28. int nq = ++top; maxl[nq] = maxl[p] + 1;
  29. memcpy(chl[nq], chl[q], sizeof chl[q]);
  30. fa[nq] = fa[q], fa[q] = fa[np] = nq;
  31. while (p && chl[p][x] == q) chl[p][x] = nq, p = fa[p];
  32. }
  33. }
  34. last = np;
  35. }
  36. } sam;
  37. char str[MAXN];
  38. long long a[MAXN];
  39. int n;
  40. struct node {
  41. int to, next;
  42. } edge[MAXN];
  43. int head[MAXN], top = 0;
  44. void push(int i, int j)
  45. { ++top, edge[top] = (node) {j, head[i]}, head[i] = top; }
  46. long long siz[MAXN];
  47. long long mx[MAXN], mn[MAXN];
  48. long long rk[MAXN];
  49. void init()
  50. {
  51. scanf("%d%s", &n, str+1);
  52. for (int i = n; i >= 1; i--) scanf("%lld", &a[i]);
  53. for (int i = n; i >= 1; i--) sam.push(str[i]-'a');
  54. for (int i = 1; i <= sam.top; i++) if (sam.fa[i]) push(sam.fa[i], i);
  55. for (int i = 0; i <= sam.top; i++) mx[i] = LONG_LONG_MIN, mn[i] = LONG_LONG_MAX;
  56. }
  57. long long rcnt[MAXN];
  58. long long maxcnt[MAXN];
  59. void dfs(int nd)
  60. {
  61. siz[nd] = sam.flag[nd], rk[nd] = a[sam.maxl[nd]]*sam.flag[nd];
  62. if (sam.flag[nd]) mx[nd] = mn[nd] = rk[nd];
  63. for (int i = head[nd]; i; i = edge[i].next) {
  64. int to = edge[i].to; dfs(to); siz[nd] += siz[to];
  65. if (mx[nd] != LONG_LONG_MIN && mn[nd] != LONG_LONG_MAX && mx[to] != LONG_LONG_MIN && mn[to] != LONG_LONG_MAX)
  66. maxcnt[sam.maxl[nd]] = max(maxcnt[sam.maxl[nd]], max(mx[to]*mx[nd], mn[to]*mn[nd]));
  67. mx[nd] = max(mx[nd], mx[to]);
  68. mn[nd] = min(mn[nd], mn[to]);
  69. }
  70. }
  71. void work()
  72. {
  73. for (int i = 0; i <= MAXN; i++) maxcnt[i] = LONG_LONG_MIN;
  74. memset(rcnt, 0, sizeof rcnt);
  75. init();
  76. dfs(1);
  77. for (int i = 2; i <= sam.top; i++) {
  78. long long cnt = siz[i]*siz[i]-sam.flag[i];long long maxx = rk[i], maxs = LONG_LONG_MAX, minn = LONG_LONG_MIN, mins = LONG_LONG_MIN;
  79. for (int k = head[i]; k; k = edge[k].next)
  80. cnt -= siz[edge[k].to]*siz[edge[k].to];
  81. rcnt[sam.maxl[i]] += cnt/2;
  82. }
  83. for (int i = n-2; i >= 0; i--) rcnt[i] += rcnt[i+1], maxcnt[i] = max(maxcnt[i], maxcnt[i+1]);
  84. rcnt[0] = (long long)n*(n-1)/2;
  85. for (int i = 0; i < n; i++) printf("%lld %lld\n", rcnt[i], maxcnt[i]!=LONG_LONG_MIN?maxcnt[i]:0);
  86. }
  87. int main()
  88. {
  89. work();
  90. return 0;
  91. }

bzoj3998 TJOI2015 弦论

Description

对于一个给定长度为N的字符串,求它的第K小子串是什么。
Input

好不容易理解了子串计数...总是混。

后缀自动机上路径与子串一一对应,一个位置对应的同一本质相同的子串出现次数为。因此需要预处理出这一节点之后走出的路径个数,然后贪心的找即可。

  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. const int MAXN = 1000005, S = 26;
  4. int t, k;
  5. struct SAM {
  6. int chl[MAXN][S], fa[MAXN], maxl[MAXN], val[MAXN];
  7. int top, root, last;
  8. SAM() { top = root = last = 1; }
  9. void push(int x)
  10. {
  11. int p = last, np = ++top; val[np]++;
  12. while (p && !chl[p][x]) chl[p][x] = np, p = fa[p];
  13. if (!p) fa[np] = root;
  14. else {
  15. int q = chl[p][x];
  16. if (maxl[q] == maxl[p] + 1) fa[np] = q;
  17. else {
  18. int nq = ++top; maxl[nq] = maxl[p] + 1;
  19. memcpy(chl[nq], chl[q], sizeof chl[q]);
  20. fa[nq] = fa[q], fa[q] = fa[np] = nq;
  21. while (p && chl[p][x] == q) chl[p][x] = nq, p = fa[p];
  22. }
  23. }
  24. last = np;
  25. }
  26. int stk[MAXN], top_tp, rd[MAXN], topo[MAXN];
  27. void top_sort()
  28. {
  29. for (int i = 1; i <= top; i++) rd[fa[i]]++;
  30. for (int i = 1; i <= top; i++) if (rd[i] == 0) stk[++top_tp] = i;
  31. int topo_ord = 0;
  32. while (top_tp) {
  33. int nd = stk[top_tp--]; rd[fa[nd]]--, val[fa[nd]] += val[nd], topo[++topo_ord] = nd;
  34. if (rd[fa[nd]] == 0) stk[++top_tp] = fa[nd];
  35. }
  36. if (t == 0)
  37. for (int i = 1; i <= top; i++) val[i] = 1;
  38. }
  39. }sam;
  40. char str[MAXN];
  41. int siz[MAXN];
  42. void find(int nd, int k)
  43. {
  44. if (k <= sam.val[nd]) return;
  45. k -= sam.val[nd];
  46. for (int i = 0; i < S; i++) if (sam.chl[nd][i]){
  47. if (k <= siz[sam.chl[nd][i]]) {
  48. putchar('a'+i);
  49. find(sam.chl[nd][i], k);
  50. return;
  51. } else k -= siz[sam.chl[nd][i]];
  52. }
  53. }
  54. void work()
  55. {
  56. scanf("%s", str);
  57. for (char *p = str; *p != '\0'; p++) sam.push(*p-'a');
  58. scanf("%d%d", &t, &k);
  59. sam.top_sort();
  60. for (int i = 1; i <= sam.top; i++) {
  61. int nd = sam.topo[i];
  62. siz[nd] = sam.val[nd];
  63. for (int j = 0; j < S; j++)
  64. siz[nd] += siz[sam.chl[nd][j]];
  65. }
  66. sam.val[1] = 0;
  67. if (siz[1] < k) puts("-1");
  68. else find(1, k);
  69. }
  70. int main()
  71. {
  72. work();
  73. return 0;
  74. }

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注