博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ACM-ICPC 2018 南京赛区网络预赛 I(回文树)
阅读量:5130 次
发布时间:2019-06-13

本文共 1920 字,大约阅读时间需要 6 分钟。

题面:

A number is skr, if and only if it's unchanged after being reversed. For example, "12321", "11" and "1" are skr numbers, but "123", "221" are not. FYW has a string of numbers, each substring can present a number, he wants to know the sum of distinct skr number in the string. FYW are not good at math, so he asks you for help.

Input

The only line contains the string of numbers SS.

It is guaranteed that 1 \le S[i] \le 91≤S[i]≤9, the length of SS is less than 20000002000000.

Output

Print the answer modulo 10000000071000000007.

样例输入1复制

111111

样例输出1复制

123456

样例输入2复制

1121

样例输出2复制

135

题目来源

题意:

    给你一串由数字组成的字符串,让你找到这个字符串中本质不同的回文串,并将他们转化为数字并求和,答案对1e9+7取模。

题目分析:

    因为涉及本质回文子串的问题,因此我们可以考虑用回文树去解决。

    这道题中,我们只需要在在插入字符的过程中模拟高精加的过程即可。

    具体的做法是:我们先找到当前结点now的最长回文后缀的长度(即),此时对于结点now,他所能构成的最长回文后缀的长度即为

    故加上字符后的值即为(因为回文,所以头尾字符相同)。

    最后我们还需加上之前的值

    即当前的值为:

    最后我们只需要遍历回文树上的所有结点上的值即可。

代码:

#include 
#define maxn 2000005using namespace std;typedef long long ll;ll sum[maxn],base[maxn];const int mod=1e9+7;char str[maxn];struct PAM{//回文树 int next[maxn][10],len[maxn],fail[maxn],S[maxn]; int id,n,last; int newnode(int x){ for(int i=0;i<10;i++){ next[id][i]=0; } len[id]=x; return id++; } void init(){ id=0; newnode(0),newnode(-1); n=last=0; fail[0]=1; S[n]=-1; } int getfail(int x){ while(S[n-len[x]-1]!=S[n]) x=fail[x]; return x; } void Insert(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; sum[now]=(base[len[cur]+1]*c+c+sum[cur]*10)%mod;//统计当前结点所形成的回文串的数值 } last=next[cur][c]; }}pam;int main(){ scanf("%s",str); pam.init(); int len=strlen(str); base[0]=1; for(int i=1;i

 

转载于:https://www.cnblogs.com/Chen-Jr/p/11007195.html

你可能感兴趣的文章
8、RDD持久化
查看>>
第二次团队冲刺--2
查看>>
VMware Tools安装
查看>>
Linux上架设boost的安装及配置过程
查看>>
[转载]加密算法库Crypto——nodejs中间件系列
查看>>
zoj 2286 Sum of Divisors
查看>>
使用Xshell密钥认证机制远程登录Linux
查看>>
OpenCV之响应鼠标(三):响应鼠标信息
查看>>
Android 画图之 Matrix(一)
查看>>
List<T>列表通用过滤模块设计
查看>>
【模板】最小生成树
查看>>
设计模式之结构型模式
查看>>
poj2569
查看>>
使用pygal_maps_world.i18n中数据画各大洲地图
查看>>
sql server必知多种日期函数时间格式转换
查看>>
jQuery EasyUI 的下拉选择combobox后台动态赋值
查看>>
timeline时间轴进度“群英荟萃”
查看>>
python if else elif statement
查看>>
网络编程
查看>>
文本隐藏(图片代替文字)
查看>>