Description

考虑一个只包含小写拉丁字母的字符串\(s\)。我们定义\(s\)的一个子串\(t\)的“出现值”为\(t\)在\(s\)中的出现次数乘以\(t\)的长度。请你求出\(s\)的所有回文子串中的最大出现值。

Input

输入只有一行,为一个只包含小写字母a-z的非空字符串\(s\)。

Output

输出一个整数,为所有回文子串的最大出现值。

Sample Input1

abacaba

Sample Input2

www

Sample Output1

7

Sample Output2

4

HINT

\(1 \le \mid s \mid \le300000\)

朴素做法:manacher+后缀数组。用manacher求出所有本质不同的回文串,对于每个本质不同的回文串,在后缀数组中二分出它的出现次数。复杂度\(O(nlogn)\)。(参见ZJOI模拟题BYcenbo palindrome

但是我们有回文自动机(参见:Palindromic Tree——回文树【处理一类回文串问题的强力工具】)。你知道回文自动机能做什么,你就能AC了。

#include<iostream>
#include<cstring>
#include<cstdio>
#include<cstdlib>
using namespace std; typedef long long ll;
#define maxn (300010)
ll ans;
struct pat
{
int next[maxn][26],fail[maxn],cnt[maxn],len[maxn],s[maxn],last,n,p;
inline int newnode(int l) { cnt[p] = 0; len[p] = l; return p++; }
inline void init() { last = n = p = 0; newnode(0); newnode(-1); s[0] = -1; fail[0] = 1; }
inline int getfail(int x) { while (s[n-len[x]-1] != s[n]) x = fail[x]; return x; }
inline void add(int c)
{
s[++n] = c; int cur = getfail(last);
if (!next[cur][c])
{
int now = newnode(len[cur]+2);
fail[now] = next[getfail(fail[cur])][c];
next[cur][c] = now;
}
last = next[cur][c]; cnt[last]++;
}
inline void count()
{
for (int i = p-1;i >= 0;--i) cnt[fail[i]] += cnt[i];
for (int i = 0;i < p;++i) ans = max(ans,(ll)cnt[i]*len[i]);
}
}tree; int main()
{
freopen("3676.in","r",stdin);
freopen("3676.out","w",stdout);
tree.init();
while (true)
{
char ch = getchar();
if (ch >= 'a'&&ch <= 'z') tree.add(ch-'a');
else break;
}
tree.count(); printf("%lld",ans);
fclose(stdin); fclose(stdout);
return 0;
}

最新文章

  1. openresty 前端开发入门五之Mysql篇
  2. sql练习(mysql版)
  3. 详解jQ的support模块
  4. POJ3735 矩阵
  5. C#打印条码的几种方式
  6. jquery定位
  7. SAR 图像
  8. Qt5该插件机制(2)--QxxxFactory类和QFactoryLoader类别
  9. UIButton和UIimageView
  10. MVC登出友情提示
  11. js阻止表单默认提交、刷新页面
  12. leetcode337
  13. HDU 6022---MG loves set(K-D树)
  14. 无法从其“Checked”属性的字符串表示形式“checked”创建“System.Boolean”类型
  15. tkinter中Radiobutton单选框控件(七)
  16. 浅析Java源码之HashMap
  17. window系统使用tftp下载和上传文件
  18. HEVC (H.265)介绍(转)
  19. POJ 1247
  20. Annotate类

热门文章

  1. FASTDFS 5X安装
  2. bitset使用
  3. hadoop错误java.io.IOException Failed to replace a bad datanode on the existing pipeline due to no more good datanodes being available to try
  4. Keepalived+Nginx+Tomcat配置高可用负载均衡系统示例
  5. ASP.NET Web API(二):安全验证之使用HTTP基本认证
  6. PHP安全设置
  7. ajax大数据排队导出+进度条
  8. 11.12 noip模拟试题
  9. 排序算法(冒泡,选择,快速)Java 实现
  10. struts2-ognl 访问静态方法