构建后缀自动机,求出后缀树

比较明显的dp

设 \(f[i]\) 表示从上而下到达当前点能够满足条件的最优值

只需要检查父亲节点是否在当前串中出现过两次就行了

这个判断用 \(endpos\) 来判断

如果出现过超过两次,那么在当前点所掌控的任意一个 \(endpos\) 以及前面的区间中

必定出现了超过两次

用一个线段树合并求 \(endpos\) 集合

然后计算一下出现次数就好了

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<cstdlib>
  4. #include<cstring>
  5. #include<cmath>
  6. #include<algorithm>
  7. #include<set>
  8. #include<map>
  9. #include<vector>
  10. #include<queue>
  11. using namespace std;
  12. #define MAX 444444
  13. char ch[MAX];
  14. int n,last=1,tot=1,TOT;
  15. struct SegNode{int ls,rs;}st[MAX*25];
  16. int rt[MAX],f[MAX],ans=1;
  17. void Modify(int &x,int l,int r,int p)
  18. {
  19. if(!x)x=++TOT;if(l==r)return;
  20. int mid=(l+r)>>1;
  21. if(p<=mid)Modify(st[x].ls,l,mid,p);
  22. else Modify(st[x].rs,mid+1,r,p);
  23. }
  24. int Merge(int x,int y)
  25. {
  26. if(!x||!y)return x|y;
  27. int z=++TOT;
  28. st[z].ls=Merge(st[x].ls,st[y].ls);
  29. st[z].rs=Merge(st[x].rs,st[y].rs);
  30. return z;
  31. }
  32. int Query(int x,int l,int r,int L,int R)
  33. {
  34. if(!x)return 0;if(L<=l&&r<=R)return 1;
  35. int mid=(l+r)>>1;
  36. if(L<=mid&&Query(st[x].ls,l,mid,L,R))return 1;
  37. if(R>mid&&Query(st[x].rs,mid+1,r,L,R))return 1;
  38. return 0;
  39. }
  40. struct Node{int ff,len,pos,son[26];}t[MAX];
  41. void extend(int c,int pos)
  42. {
  43. int p=last,np=++tot;last=np;t[np].pos=pos;
  44. t[np].len=t[p].len+1;
  45. while(p&&!t[p].son[c])t[p].son[c]=np,p=t[p].ff;
  46. if(!p)t[np].ff=1;
  47. else
  48. {
  49. int q=t[p].son[c];
  50. if(t[q].len==t[p].len+1)t[np].ff=q;
  51. else
  52. {
  53. int nq=++tot;
  54. t[nq]=t[q];t[nq].len=t[p].len+1;
  55. t[q].ff=t[np].ff=nq;
  56. while(p&&t[p].son[c]==q)t[p].son[c]=nq,p=t[p].ff;
  57. }
  58. }
  59. }
  60. int a[MAX],p[MAX],top[MAX];
  61. int main()
  62. {
  63. scanf("%d",&n);scanf("%s",ch+1);
  64. for(int i=1;i<=n;++i)extend(ch[i]-97,i),Modify(rt[last],1,n,i);
  65. for(int i=1;i<=tot;++i)a[t[i].len]++;
  66. for(int i=1;i<=n;++i)a[i]+=a[i-1];
  67. for(int i=tot;i>=1;--i)p[a[t[i].len]--]=i;
  68. for(int i=tot;i>1;--i)rt[t[p[i]].ff]=Merge(rt[t[p[i]].ff],rt[p[i]]);
  69. for(int i=2;i<=tot;++i)
  70. {
  71. int u=p[i],fa=t[u].ff;
  72. if(fa==1){f[u]=1,top[u]=u;continue;}
  73. int x=Query(rt[top[fa]],1,n,t[u].pos-t[u].len+t[top[fa]].len,t[u].pos-1);
  74. if(x)f[u]=f[fa]+1,top[u]=u;
  75. else f[u]=f[fa],top[u]=top[fa];
  76. ans=max(ans,f[u]);
  77. }
  78. printf("%d\n",ans);
  79. return 0;
  80. }

CF 700E的更多相关文章

  1. [LOJ 6288]猫咪[CF 700E]Cool Slogans

    [LOJ 6288]猫咪[CF 700E]Cool Slogans 题意 给定一个字符串 \(T\), 求一个最大的 \(K\) 使得存在 \(S_1,S_2,\dots,S_k\) 满足 \(S_1 ...

  2. cf 700e(sam好题,线段树维护right)

    代码参考:http://blog.csdn.net/qq_33229466/article/details/79140428 #include<iostream> #include< ...

  3. ORA-00494: enqueue [CF] held for too long (more than 900 seconds) by 'inst 1, osid 5166'

    凌晨收到同事电话,反馈应用程序访问Oracle数据库时报错,当时现场现象确认: 1. 应用程序访问不了数据库,使用SQL Developer测试发现访问不了数据库.报ORA-12570 TNS:pac ...

  4. cf之路,1,Codeforces Round #345 (Div. 2)

     cf之路,1,Codeforces Round #345 (Div. 2) ps:昨天第一次参加cf比赛,比赛之前为了熟悉下cf比赛题目的难度.所以做了round#345连试试水的深浅.....   ...

  5. cf Round 613

    A.Peter and Snow Blower(计算几何) 给定一个点和一个多边形,求出这个多边形绕这个点旋转一圈后形成的面积.保证这个点不在多边形内. 画个图能明白 这个图形是一个圆环,那么就是这个 ...

  6. ARC下OC对象和CF对象之间的桥接(bridge)

    在开发iOS应用程序时我们有时会用到Core Foundation对象简称CF,例如Core Graphics.Core Text,并且我们可能需要将CF对象和OC对象进行互相转化,我们知道,ARC环 ...

  7. [Recommendation System] 推荐系统之协同过滤(CF)算法详解和实现

    1 集体智慧和协同过滤 1.1 什么是集体智慧(社会计算)? 集体智慧 (Collective Intelligence) 并不是 Web2.0 时代特有的,只是在 Web2.0 时代,大家在 Web ...

  8. CF memsql Start[c]UP 2.0 A

    CF memsql Start[c]UP 2.0 A A. Golden System time limit per test 1 second memory limit per test 256 m ...

  9. CF memsql Start[c]UP 2.0 B

    CF memsql Start[c]UP 2.0 B B. Distributed Join time limit per test 1 second memory limit per test 25 ...

随机推荐

  1. JAVA- 成员变量与局部变量的区别

    成员变量与局部变量的区别 成员变量是定义在方法之外,类之内的局部变量是定义在方法之内的. 作用上的区别: 1.成员变量的作用是用于描述一类事物的公共属性的. 2.局部变量的作用就是提供一个变量给方法内 ...

  2. IDEAL葵花宝典:java代码开发规范插件 checkstyle、visualVM、PMD 插件

    前言: visualVM: 运行java程序的时候启动visualvm,方便查看jvm的情况 比如堆内存大小的分配:某个对象占用了多大的内存,jvm调优必备工具. checkstyle: CheckS ...

  3. js_调试_01_14 个你可能不知道的 JavaScript 调试技巧

    更快更高效地调试你的 JavaScript 了解你的工具在完成任务时有很重要的意义. 尽管 JavaScript 是出了名的难以调试,但是如果你掌握了一些小技巧,错误和 bug 解决起来就会快多了. ...

  4. leetcode 304. Range Sum Query 2D - Immutable(递推)

    Given a 2D matrix matrix, find the sum of the elements inside the rectangle defined by its upper lef ...

  5. CodeForces - 311B:Cats Transport (DP+斜率优化)

    Zxr960115 is owner of a large farm. He feeds m cute cats and employs p feeders. There's a straight r ...

  6. MSTAR 平台

    MApp_Menu.c ZUI_exefunc.h //菜单属性 MApp_ZUI_APItables.h #define GETWNDINFO(hwnd) (&g_GUI_WindowLis ...

  7. POCO库中文编程参考指南(10)如何使用TCPServer框架?

    1 TCPServer 框架概述 POCO 库提供TCPServer框架,用以搭建自定义的 TCP 服务器.TCPServer维护一个连接队列.一个连接线程池.连接线程用于处理连接,连接线程只要一空闲 ...

  8. 非常好的LINUX学习者博客

    http://blog.csdn.net/qq_21794823/article/category/6496200

  9. CF-839B

    B. Game of the Rows time limit per test 1 second memory limit per test 256 megabytes input standard ...

  10. 日期组件wdatepicker

    导入WdataPicker文件包到项目的js文件夹下: 在用户管理中的添加.编辑jsp页面对生日表单项引入日期组件: <script type="text/javascript&quo ...