首先会想到|x|是不递减的。

于是可以枚举长度L。

再每个L设一个断点,xx必定经过两个断点。

两两断点间求最长公共前后缀,这里用hash+二分会快。

然后一波扫过去就好了。

如果找到了,hash就要重构。

来计算一下复杂度。

一共有O(n log n)个断点,每个求最长公共前后缀复杂度log,这一部分是O(n log^2 n )

长度小于 \(L \leq n\)的最多 \(n\sqrt n\)次,\(L\geq n\)最多 \(n\sqrt n\)中,所以重构复杂度: \(O(n \sqrt n)\)

#include<cstdio>
#include<cstring>
#include<algorithm>
#define ll long long
#define fo(i, x, y) for(int i = x; i <= y; i ++)
#define min(a, b) ((a) < (b) ? (a) : (b))
#define P pair<int, int>
using namespace std; const int N = 50005, mo = 998244353, pri = 1e9 + 7, pri2 = 43313; char str[N];
int n, bz[N], tmp;
ll c[N], ni[N], s[N]; ll ksm(ll x, ll y) {
ll s = 1;
for(; y; x = x * x % mo, y >>= 1)
if(y & 1) s = s * x % mo;
return s;
} void Getsum() {
fo(i, 1, n) s[i] = (s[i - 1] + c[i] * (str[i] - 'a') % mo) % mo;
} int sum(int x, int y) {
return ((s[y] - s[x - 1] + mo) * ni[x] % mo);
} int Getq(int x, int y) {
int ans = 0;
for(int l = 1, r = tmp; l <= r;) {
int m = l + r >> 1;
if(sum(x - m + 1, x) == sum(y - m + 1, y))
ans = m, l = m + 1; else r = m - 1;
}
return ans;
} int Geth(int x, int y) {
int ans = 0;
for(int l = 1, r = n - y + 1; l <= r;) {
int m = l + r >> 1;
if(sum(x, x + m - 1) == sum(y, y + m - 1))
ans = m, l = m + 1; else r = m - 1;
}
return ans;
} int main() {
scanf("%s", str + 1); n = strlen(str + 1); c[0] = ni[0] = 1;
ni[1] = ksm(pri, mo - 2); c[1] = pri;
fo(i, 2, n) ni[i] = ni[i - 1] * ni[1] % mo, c[i] = c[i - 1] * c[1] % mo; int n0 = n; Getsum();
fo(l, 1, n) {
int xg = 0; tmp = l;
fo(i, 1, n / l) {
int x = i * l, y = x + l;
if(y > n) break;
int q = Getq(x, y), h = Geth(x, y);
if(q + h > l) {
fo(j, x - q + 1, x - q + l) bz[j] = l;
tmp = q;
xg = 1;
} else tmp = l;
}
if(xg) {
int n1 = 0;
fo(i, 1, n) if(bz[i] != l)
str[++ n1] = str[i];
n = n1;
Getsum();
}
}
fo(i, 1, n) putchar(str[i]);
}

Codeforces 319D Have You Ever Heard About the Word?的更多相关文章

  1. CF 319D(Have You Ever Heard About the Word?-模拟)

    D. Have You Ever Heard About the Word? time limit per test 6 seconds memory limit per test 256 megab ...

  2. Codeforce 水题报告

    最近做了好多CF的题的说,很多cf的题都很有启发性觉得很有必要总结一下,再加上上次写题解因为太简单被老师骂了,所以这次决定总结一下,也发表一下停课一星期的感想= = Codeforces 261E M ...

  3. CodeForces 176B Word Cut (计数DP)

    Word Cut Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u Submit St ...

  4. Codeforces Round #189 (Div. 1 + Div. 2)

    A. Magic Numbers 不能出现连续的3个4,以及1.4以外的数字. B. Ping-Pong (Easy Version) 暴力. C. Malek Dance Club 考虑\(x\)二 ...

  5. Codeforces Round #382 (Div. 2)B. Urbanization 贪心

    B. Urbanization 题目链接 http://codeforces.com/contest/735/problem/B 题面 Local authorities have heard a l ...

  6. CodeForces - 426A(排序)

    Sereja and Mugs Time Limit: 1000MS   Memory Limit: 262144KB   64bit IO Format: %I64d & %I64u Sub ...

  7. Codeforces Gym 100803D Space Golf 物理题

    Space Golf 题目连接: http://codeforces.com/gym/100803/attachments Description You surely have never hear ...

  8. Codeforces Round #290 (Div. 2) C. Fox And Names dfs

    C. Fox And Names 题目连接: http://codeforces.com/contest/510/problem/C Description Fox Ciel is going to ...

  9. codeforces Gym 100187H H. Mysterious Photos 水题

    H. Mysterious Photos Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100187/p ...

随机推荐

  1. 自用的弹出窗口jquery插件

    现有网上的弹出窗口插件很多, 但发现在项目应用中总会有些功能不能适用, 最后只好自己写一个:插件主要参考了ymPrompt弹窗代码, ymPrompt是JS的弹窗,本插件相当于是ymPrompt的jq ...

  2. iOS开发 - 如何跳到系统设置里的各种设置界面

    在iOS开发中,有时会有跳转系统设置界面的需求,例如提示用户打开蓝牙或者WIFI,提醒用户打开推送或者位置权限等.在iOS6之后,第三方应用需要跳转系统设置界面,需要在URL type中添加一个pre ...

  3. Mybatis异常_03_Invalid bound statement (not found)

    一.异常信息 Caused by: org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): c ...

  4. struct tm 和 time_t 时间和日期的使用方法(转

    关键字:UTC(世界标准时间),Calendar Time(日历时间),epoch(时间点),clock tick(时钟计时单元) .概念 在C/C++中,对字符串的操作有很多值得注意的问题,同样,C ...

  5. CodeForces 547E:Mike and Friends(AC自动机+DFS序+主席树)

    What-The-Fatherland is a strange country! All phone numbers there are strings consisting of lowercas ...

  6. BZOJ_1304_[CQOI2009]叶子的染色_树形DP

    BZOJ_1304_[CQOI2009]叶子的染色_树形DP Description 给一棵m个结点的无根树,你可以选择一个度数大于1的结点作为根,然后给一些结点(根.内部结点和叶子均可)着以黑色或白 ...

  7. 【前端】jQuery DataTables 使用手册(精简版)

    转载请注明出处:http://www.cnblogs.com/shamoyuu/p/5182940.html 前排提醒,这个插件能不用就不用,那么多好的插件等着你,为什么要用它呢?就算用easyui的 ...

  8. Http客户端跳转和服务器端跳转的区别

    服务器端跳转:      服务器转发全程是没有客户端参与的,都在web container容器内部进行,没有任何服务器和客户端的通信,实际就是服务器内部的跳转. 这次forward, 服务器没有构建H ...

  9. SpringMVC之七:SpringMVC中使用Interceptor拦截器

    SpringMVC 中的Interceptor 拦截器也是相当重要和相当有用的,它的主要作用是拦截用户的请求并进行相应的处理.比如通过它来进行权限验证,或者是来判断用户是否登陆,或者是像12306 那 ...

  10. Source insight 支持汇编

    把uboot代码添加到SI的项目里面,打开*.S的文件的时候,发现还是黑白色的,感觉很不舒服,我使用的SI的版本是: ver 3.50,通过百度,找到了解决的办法,方法如下: 1:想让*.s 或者 * ...