[POI2006]OKR-Periods of Words
2018-06-17 21:02:34来源:未知 阅读 ()
---恢复内容开始---
题目描述
A string is a finite sequence of lower-case (non-capital) letters of the English alphabet. Particularly, it may be an empty sequence, i.e. a sequence of 0 letters. By A=BC we denotes that A is a string obtained by concatenation (joining by writing one immediately after another, i.e. without any space, etc.) of the strings B and C (in this order). A string P is a prefix of the string !, if there is a string B, that A=PB. In other words, prefixes of A are the initial fragments of A. In addition, if P!=A and P is not an empty string, we say, that P is a proper prefix of A.
A string Q is a period of Q, if Q is a proper prefix of A and A is a prefix (not necessarily a proper one) of the string QQ. For example, the strings abab and ababab are both periods of the string abababa. The maximum period of a string A is the longest of its periods or the empty string, if A doesn't have any period. For example, the maximum period of ababab is abab. The maximum period of abc is the empty string.
Task Write a programme that:
reads from the standard input the string's length and the string itself,calculates the sum of lengths of maximum periods of all its prefixes,writes the result to the standard output.
一个串是有限个小写字符的序列,特别的,一个空序列也可以是一个串. 一个串P是串A的前缀, 当且仅当存在串B, 使得 A = PB. 如果 P A 并且 P 不是一个空串,那么我们说 P 是A的一个proper前缀. 定义Q 是A的周期, 当且仅当Q是A的一个proper 前缀并且A是QQ的前缀(不一定要是proper前缀). 比如串 abab 和 ababab 都是串abababa的周期. 串A的最大周期就是它最长的一个周期或者是一个空串(当A没有周期的时候), 比如说, ababab的最大周期是abab. 串abc的最大周期是空串. 给出一个串,求出它所有前缀的最大周期长度之和.。
输入输出格式
输入格式:
In the first line of the standard input there is one integer kk (1\le k\le 1\ 000\ 0001≤k≤1 000 000 ) - the length of the string. In the following line a sequence of exactly kk lower-case letters of the English alphabet is written - the string.
输出格式:
In the first and only line of the standard output your programme should write an integer - the sum of lengths of maximum periods of all prefixes of the string given in the input.
输入输出样例
8 babababa
24
1 #include<bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 const int maxn=1000000+5; 5 6 char a[maxn]; 7 int net[maxn]; 8 int n; 9 ll ans; 10 11 inline void fnet() 12 { 13 net[1]=0; 14 for(int i=2;i<=n;i++) 15 { 16 int now=i-1; 17 while(true) 18 { 19 now=net[now]; 20 if(a[now+1]==a[i]) 21 { 22 net[i]=now+1; 23 break; 24 } 25 if(now==0) 26 break; 27 } 28 } 29 return ; 30 } 31 32 33 int main() 34 { 35 scanf("%d",&n); 36 scanf("%s",a+1); 37 fnet(); 38 for(int i=1;i<=n;i++) 39 { 40 int now=i; 41 while(net[now]!=0) 42 { 43 now=net[now]; 44 } 45 if(net[i]!=0) 46 { 47 net[i]=now; 48 } 49 ans+=i-now; 50 } 51 printf("%lld\n",ans); 52 return 0; 53 }
---恢复内容结束---
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- leetcode笔记(五)809. Expressive Words 2018-06-29
- Aspose.Words导出dt到word的问题 2018-06-18
- UVALive 6911---Double Swords(贪心+树状数组(或集合)) 2018-06-17
- Leetcode: 30. Substring with Concatenation of All Words 2018-06-17
- hdu 4117 -- GRE Words (AC自动机+线段树) 2018-06-17
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash