zoukankan      html  css  js  c++  java
  • POJ——T 2752 Seek the Name, Seek the Fame

    http://poj.org/problem?id=2752

    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 20418   Accepted: 10619

    Description

    The little cat is so famous, that many couples tramp over hill and dale to Byteland, and asked the little cat to give names to their newly-born babies. They seek the name, and at the same time seek the fame. In order to escape from such boring job, the innovative little cat works out an easy but fantastic algorithm: 

    Step1. Connect the father's name and the mother's name, to a new string S. 
    Step2. Find a proper prefix-suffix string of S (which is not only the prefix, but also the suffix of S). 

    Example: Father='ala', Mother='la', we have S = 'ala'+'la' = 'alala'. Potential prefix-suffix strings of S are {'a', 'ala', 'alala'}. Given the string S, could you help the little cat to write a program to calculate the length of possible prefix-suffix strings of S? (He might thank you by giving your baby a name:) 

    Input

    The input contains a number of test cases. Each test case occupies a single line that contains the string S described above. 

    Restrictions: Only lowercase letters may appear in the input. 1 <= Length of S <= 400000. 

    Output

    For each test case, output a single line with integer numbers in increasing order, denoting the possible length of the new baby's name.

    Sample Input

    ababcababababcabab
    aaaaa
    

    Sample Output

    2 4 9 18
    1 2 3 4 5
    

    Source

     
     
    确定一个K,使的串的前K位==后K位,按大小输出K
    k一定会有一个串长len,然后用len一次往前跳next,画图模拟一下、、
     1 #include <algorithm>
     2 #include <iostream>
     3 #include <cstring>
     4 #include <cstdio>
     5 
     6 using namespace std;
     7 
     8 const int N(400000+5);
     9 int len,p[N],cnt,ans[N];
    10 bool app[N];
    11 char s[N];
    12 
    13 inline void Get_next()
    14 {
    15     for(int i=2,j=0;i<=len;i++)
    16     {
    17         for(;s[i]!=s[j+1]&&j>0;) j=p[j];
    18         if(s[i]==s[j+1]) j++;
    19         p[i]=j;
    20     }
    21 }
    22 
    23 inline void init()
    24 {
    25     cnt=0;
    26     memset(p,0,sizeof(p));
    27     memset(app,0,sizeof(app));
    28     memset(ans,0,sizeof(ans));
    29 }
    30 
    31 int main()
    32 {
    33     for(;cin>>s+1;init())
    34     {
    35         len=strlen(s+1);
    36         Get_next();
    37         for(;len;len=p[len])
    38             ans[++cnt]=len;
    39         sort(ans+1,ans+cnt+1);
    40         for(int i=1;i<cnt;i++)
    41             printf("%d ",ans[i]);
    42         printf("%d
    ",ans[cnt]);
    43     }
    44     return 0;
    45 }
    ——每当你想要放弃的时候,就想想是为了什么才一路坚持到现在。
  • 相关阅读:
    470. 用 Rand7() 实现 Rand10() 采样
    165. 比较版本号 字符串
    Java 通过属性名称读取或者设置实体的属性值
    双非Java的学习之旅以及秋招路程
    【Unity3D】不可读Texture资源的获取
    java 8 Map 之merge用法
    Jmeter-计数器的应用
    Jmeter-集合点【同步定时器】应用
    2. Go并发编程--GMP调度
    Go序列化嵌套结构体
  • 原文地址:https://www.cnblogs.com/Shy-key/p/7382041.html
Copyright © 2011-2022 走看看