博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【TOJ 2406】Power Strings(KMP找最多重复子串)
阅读量:5319 次
发布时间:2019-06-14

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

描述

Given two strings a and b we define a*b to be their concatenation. For example, if a = "abc" and b = "def" then a*b = "abcdef". If we think of concatenation as multiplication, exponentiation by a non-negative integer is defined in the normal way: a^0 = "" (the empty string) and a^(n+1) = a*(a^n).

输入

Each test case is a line of input representing s, a string of printable characters. The length of s will be at least 1 and will not exceed 1 million characters. A line containing a period follows the last test case.

输出

For each s you should print the largest n such that s = a^n for some string a.

样例输入

abcd

aaaa
ababab
.

样例输出

1

4
3

提示

This problem has huge input, use scanf instead of cin to avoid time limit exceed.

思路:

就是问一个字符串写成(a)^n的形式,求最大的n.

根据KMP的next函数的性质,已知字符串t第k个字符的next[k],那么d=k-next[k],如果k%d==0,那么t[1……k]最多可均匀的分成k/d份。也就是可以生成一个长度为d的重复度为k/d的字串。

#include
using namespace std;const int M=1e6+5;char t[M];int next[M],tlen;void getNext(){ int i=0,j=-1; next[0]=-1; while(i

 

转载于:https://www.cnblogs.com/kannyi/p/8980217.html

你可能感兴趣的文章
servlet
查看>>
SSM集成activiti6.0错误集锦(一)
查看>>
在Javaweb中使用Scala
查看>>
linux下安装python环境
查看>>
pdnovel 看书 读书 听书
查看>>
oracle for loop 代替cursor (转载)
查看>>
Linked List Cycle II
查看>>
工作踩坑记录:JavaScript跳转被缓存
查看>>
个人作业
查看>>
Linux高级运维 第四章 文件的基本管理和XFS文件系统备份恢复
查看>>
读书笔记 - 《智能主义》
查看>>
非接触型手掌静脉识别 PalmSecure™
查看>>
Zookeeper集群模式搭建
查看>>
ASP.Net教程系列:多线程编程实战(二)
查看>>
php代码规范
查看>>
SpringBoot+MyBatis+PageHelper分页无效
查看>>
性能优化和安全
查看>>
Mini ORM PetaPoco
查看>>
天梯 1014 装箱问题
查看>>
Java中的数学计算函数汇总
查看>>