题链:

http://www.lydsy.com/JudgeOnline/problem.php?id=3879

题解:

后缀数组,单调栈,RMQ
其实类似 BZOJ 3238 [Ahoi2013]差异
只是不过变成了多次询问某些后缀两两之间的LCP的和。
所以对于每次询问,就先把那些后缀提出来,
按 rank排序后,求出相邻的后缀的 LCP(存储在 H 数组中),
然后再按那个题的做法做就好了(即求出 H 数组对应的 L[],R[])。

读入数据有点大,用了读入优化。

  1. #include<cstdio>
  2. #include<cstring>
  3. #include<iostream>
  4. #include<algorithm>
  5. #define MAXN 505000
  6. #define filein(x) freopen(#x".in","r",stdin);
  7. #define fileout(x) freopen(#x".out","w",stdout);
  8. using namespace std;
  9. char S[MAXN];
  10. int sa[MAXN],rak[MAXN],hei[MAXN],L[MAXN],R[MAXN],stm[MAXN][20],log2[MAXN];
  11. char gc(){
  12. //return getchar();
  13. static char IN[MAXN];
  14. static int bit=MAXN-5000,p=0,len=0;
  15. if(p>=len) len=fread(IN,1,bit,stdin),IN[len]=EOF,p=0;
  16. return IN[p++];
  17. }
  18. void read(int &x){
  19. static int f;
  20. static char ch;
  21. x=0; f=1; ch=gc();
  22. while(ch<'0'||'9'<ch){if(ch=='-')f=-1;ch=gc();}
  23. while('0'<=ch&&ch<='9'){x=x*10+ch-'0';ch=gc();}
  24. x=x*f;
  25. }
  26. void build(int N,int M){
  27. static int cc[MAXN],ta[MAXN],tb[MAXN],*x,*y,h,p;
  28. x=ta; y=tb; h=0;
  29. for(int i=0;i<M;i++) cc[i]=0;
  30. for(int i=0;i<N;i++) cc[x[i]=S[i]]++;
  31. for(int i=1;i<M;i++) cc[i]+=cc[i-1];
  32. for(int i=N-1;i>=0;i--) sa[--cc[x[i]]]=i;
  33. for(int k=1;p=0,k<N;k<<=1){
  34. for(int i=N-k;i<N;i++) y[p++]=i;
  35. for(int i=0;i<N;i++) if(sa[i]>=k) y[p++]=sa[i]-k;
  36. for(int i=0;i<M;i++) cc[i]=0;
  37. for(int i=0;i<N;i++) cc[x[y[i]]]++;
  38. for(int i=1;i<M;i++) cc[i]+=cc[i-1];
  39. for(int i=N-1;i>=0;i--) sa[--cc[x[y[i]]]]=y[i];
  40. swap(x,y); y[N]=-1; x[sa[0]]=0; M=1;
  41. for(int i=1;i<N;i++)
  42. x[sa[i]]=y[sa[i]]==y[sa[i-1]]&&y[sa[i]+k]==y[sa[i-1]+k]?M-1:M++;
  43. if(M>=N) break;
  44. }
  45. for(int i=0;i<N;i++) rak[sa[i]]=i;
  46. for(int i=0,j;i<N;i++){
  47. if(h) h--;
  48. if(rak[i]){
  49. j=sa[rak[i]-1];
  50. while(S[i+h]==S[j+h]) h++;
  51. }
  52. stm[rak[i]][0]=hei[rak[i]]=h;
  53. }
  54. for(int k=1;k<=log2[N];k++)
  55. for(int i=(1<<k)-1;i<N;i++)
  56. stm[i][k]=min(stm[i-(1<<(k-1))][k-1],stm[i][k-1]);
  57. }
  58. int LCP(int l,int r){
  59. static int k;
  60. if(l>r) swap(l,r); l++;
  61. k=log2[r-l+1];
  62. return min(stm[l+(1<<k)-1][k],stm[r][k]);
  63. }
  64. void preLR(int N,int *val){
  65. static int stk[MAXN],stp[MAXN],top;
  66. stp[top=0]=0;
  67. for(int i=0;i<N;i++){
  68. while(top&&stk[top]>=val[i]) top--;
  69. L[i]=stp[top]; top++;
  70. stk[top]=val[i]; stp[top]=i;
  71. }
  72. stp[top=N]=N;
  73. for(int i=N-1;i>=0;i--){
  74. while(top<N&&stk[top]>val[i]) top++;
  75. R[i]=stp[top]-1; top--;
  76. stk[top]=val[i]; stp[top]=i;
  77. }
  78. }
  79. int main()
  80. {
  81. //filein(3879);
  82. long long ans;
  83. log2[1]=0; for(int i=2;i<=500000;i++) log2[i]=log2[i>>1]+1;
  84. static int A[MAXN*10],H[MAXN*10],N,M;
  85. read(N); read(M);
  86. for(int i=0;i<N;i++)
  87. do{S[i]=gc();}while(S[i]<'a'||'z'<S[i]);
  88. S[N]=0;build(N,300);
  89. for(int i=0,t;i<M;i++){
  90. ans=0;
  91. read(t); for(int j=0;j<t;j++) read(A[j]),A[j]=rak[A[j]-1];
  92. sort(A,A+t);
  93. t=unique(A,A+t)-A;
  94. for(int i=1;i<t;i++) H[i]=LCP(A[i-1],A[i]);
  95. preLR(t,H);
  96. for(int i=1;i<t;i++)
  97. ans+=1ll*(i-L[i])*(R[i]-i+1)*H[i];
  98. printf("%lld\n",ans);
  99. }
  100. return 0;
  101. }

●BZOJ 3879 SvT的更多相关文章

  1. BZOJ 3879: SvT [虚树 后缀树]

    传送门 题意: 多次询问,给出一些后缀,求两两之间$LCP$之和 哈哈哈哈哈哈哈竟然$1A$了,刚才还在想如果写不好这道题下节数学就不上了,看来是上天让我上数学课啊 $Suffix\ Virtual\ ...

  2. bzoj 3879: SvT

    Description (我并不想告诉你题目名字是什么鬼) 有一个长度为n的仅包含小写字母的字符串S,下标范围为[1,n]. 现在有若干组询问,对于每一个询问,我们给出若干个后缀(以其在S中出现的起始 ...

  3. BZOJ 3879: SvT 虚树 + 后缀自动机

    Description (我并不想告诉你题目名字是什么鬼) 有一个长度为n的仅包含小写字母的字符串S,下标范围为[1,n]. 现在有若干组询问,对于每一个询问,我们给出若干个后缀(以其在S中出现的起始 ...

  4. 【BZOJ 3879】SvT

    http://www.lydsy.com/JudgeOnline/problem.php?id=3879 SvT的中文是后缀虚树? 反正本蒟蒻不懂,还是$O(nlogn)$的后缀数组和单调栈维护来做, ...

  5. bzoj 3879 虚树

    题目大意: 给一个字符串,多次询问k个后缀,求它们两两间LCP长度总和 分析: 转化为后缀树,用虚树求 注意: 后缀树中代表后缀的点都是叶子节点 题目中取模并没有卵用 #include <cst ...

  6. bzoj AC倒序

    Search GO 说明:输入题号直接进入相应题目,如需搜索含数字的题目,请在关键词前加单引号 Problem ID Title Source AC Submit Y 1000 A+B Problem ...

  7. Week Four

    2018.12.18 1.[USACO Platinum C] 2.[Gym 102028H] 3.[BZOJ 2750] 4.[BZOJ 3238] 5.[BZOJ 4310] 6.[BZOJ 38 ...

  8. Week Five

    2018.12.25 1.[BZOJ 4310] 2.[BZOJ 3879] 3.[BZOJ 2754] 4.[BZOJ 4698] 5.[Codeforces 914E] 6.[Codeforces ...

  9. HDU 3879 && BZOJ 1497:Base Station && 最大获利 (最大权闭合图)

    http://acm.hdu.edu.cn/showproblem.php?pid=3879 http://www.lydsy.com/JudgeOnline/problem.php?id=1497 ...

随机推荐

  1. 关于FPGA随笔

    verilog与c

  2. 洛谷 P3797 妖梦斩木棒

    https://www.luogu.org/problem/show?pid=3797 题目背景 妖梦是住在白玉楼的半人半灵,拥有使用剑术程度的能力. 题目描述 有一天,妖梦正在练习剑术.地面上摆放了 ...

  3. 面试必问---HashMap原理分析

    一.HashMap的原理 众所周知,HashMap是用来存储Key-Value键值对的一种集合,这个键值对也叫做Entry,而每个Entry都是存储在数组当中,因此这个数组就是HashMap的主干.H ...

  4. Python 迭代器之列表解析与生成器

     [TOC] 1. 列表解析 1.1 列表解析基础 列表解析把任意一个表达式应用到一个迭代对象中的元素 Python内置ord函数会返回一个字符的ASCII整数编码(chr函数是它的逆过程, 它将A ...

  5. node创建第一个应用

    如果我们使用PHP来编写后端的代码时,需要Apache 或者 Nginx 的HTTP 服务器,并配上 mod_php5 模块和php-cgi. 从这个角度看,整个"接收 HTTP 请求并提供 ...

  6. nyoj 对决吃桃

    时间限制:3000 ms  |  内存限制:65535 KB 难度:0   描述 有一堆桃子不知数目,猴子第一天吃掉一半,又多吃了一个,第二天照此方法,吃掉剩下桃子的一半又多一个,天天如此,到第m天早 ...

  7. ThreadLocal源码分析:(三)remove()方法

    在ThreadLocal的get(),set()的时候都会清除线程ThreadLocalMap里所有key为null的value. 而ThreadLocal的remove()方法会先将Entry中对k ...

  8. maven构建spring报错org.springframework.core.NestedRuntimeException cannot be resolved.

    Error:The type org.springframework.core.NestedRuntimeException cannot be resolved. It is indirectly ...

  9. 新概念英语(1-121)The man in a hat

    Why didn't Caroline recognize the customer straight away ?A:I bought two expensive dictionaries here ...

  10. restful架构风格设计准则(二)以资源为中心,一个url

    读书笔记,原文链接:http://www.cnblogs.com/loveis715/p/4669091.html,感谢作者! 1.REST是一种架构风格,其核心是面向资源,简化设计,降低开发的复杂性 ...