首页 > 其他 > 详细

ACdream1430SETI(后缀自动机)

时间:2017-12-13 21:34:09      阅读:223      评论:0      收藏:0      [点我收藏+]

 

 问题:

Amateur astronomers Tom and Bob try to find radio broadcasts of extraterrestrial civilizations in the air. Recently they received some strange signal and represented it as a word consisting of small letters of the English alphabet. Now they wish to decode the signal. But they do not know what to start with.
      They think that the extraterrestrial message consists of words, but they cannot identify them. Tom and Bob call a subword of the message a potential word if it has at least two non-overlapping occurrences in the message.

      For example, if the message is “abacabacaba”, “abac” is a potential word, but “acaba” is not because two of its occurrences overlap.
      Given a message m help Tom and Bob to find the number of potential words in it.

Input

      Input file contains one string that consists of small letters of the English alphabet. The length of the message doesn’t exceed 10 000.

Output

      Output one integer number — the number of potential words in a message.

Sample Input

abacabacaba

Sample Output

15

题意:

求字符串里最长的不相交重复字串的长度。

思路;

后缀自动机,记录每个状态的最先出现和最后一次出现的位置,就可以判断是否出现了多次,以及是否相交。

 

ACdream1430SETI(后缀自动机)

原文:http://www.cnblogs.com/hua-dong/p/8034565.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!