zoukankan      html  css  js  c++  java
  • HDU 4763 Theme Section (2013长春网络赛1005,KMP)

    Theme Section

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 271    Accepted Submission(s): 121


    Problem Description
    It's time for music! A lot of popular musicians are invited to join us in the music festival. Each of them will play one of their representative songs. To make the programs more interesting and challenging, the hosts are going to add some constraints to the rhythm of the songs, i.e., each song is required to have a 'theme section'. The theme section shall be played at the beginning, the middle, and the end of each song. More specifically, given a theme section E, the song will be in the format of 'EAEBE', where section A and section B could have arbitrary number of notes. Note that there are 26 types of notes, denoted by lower case letters 'a' - 'z'.

    To get well prepared for the festival, the hosts want to know the maximum possible length of the theme section of each song. Can you help us?
     
    Input
    The integer N in the first line denotes the total number of songs in the festival. Each of the following N lines consists of one string, indicating the notes of the i-th (1 <= i <= N) song. The length of the string will not exceed 10^6.
     
    Output
    There will be N lines in the output, where the i-th line denotes the maximum possible length of the theme section of the i-th song.
     
    Sample Input
    5 xy abc aaa aaaaba aaxoaaaaa
     
    Sample Output
    0 0 1 1 2
     
    Source
     
    Recommend
    liuyiding
     

    就是要中间找一段最长的和,和开头和结尾一样。

    KMP就解决了。

    有点暴力。

    先next[n]一直标记下。

    然后循环找next,更新答案

     1 /* ***********************************************
     2 Author        :kuangbin
     3 Created Time  :2013-9-29 18:18:34
     4 File Name     :E:2013ACM练习2013网络赛2013长春网络赛1005.cpp
     5 ************************************************ */
     6 
     7 #include <stdio.h>
     8 #include <string.h>
     9 #include <iostream>
    10 #include <algorithm>
    11 #include <vector>
    12 #include <queue>
    13 #include <set>
    14 #include <map>
    15 #include <string>
    16 #include <math.h>
    17 #include <stdlib.h>
    18 #include <time.h>
    19 using namespace std;
    20 
    21 void kmp_pre(char x[],int m,int next[])
    22 {
    23     int i,j;
    24     j = next[0] = -1;
    25     i = 0;
    26     while(i < m)
    27     {
    28         while( -1 != j && x[i] != x[j] )j = next[j];
    29         next[++i] = ++j;
    30     }
    31 }
    32 char str[1000010];
    33 int next[1000010];
    34 bool f[1000010];
    35 int main()
    36 {
    37     //freopen("in.txt","r",stdin);
    38     //freopen("out.txt","w",stdout);
    39     int T;
    40     scanf("%d",&T);
    41     while(T--)
    42     {
    43         scanf("%s",str);
    44         int n = strlen(str);
    45         kmp_pre(str,n,next);
    46         memset(f,false,sizeof(f));
    47         int tmp = n;
    48         while(tmp > 0)
    49         {
    50             if(n >= 2*tmp)f[tmp] = true;
    51             tmp = next[tmp];
    52         }
    53         int ans = 0;
    54         for(int i = n-1;i > 1;i--)
    55         {
    56             tmp = i;
    57             while(tmp > 0)
    58             {
    59                 if(f[tmp] && i >= 2*tmp && n >= i+tmp)
    60                 {
    61                     ans = max(ans,tmp);
    62                     break;
    63                 }
    64                 tmp = next[tmp];
    65             }
    66         }
    67         printf("%d
    ",ans);
    68     }
    69     return 0;
    70 }
  • 相关阅读:
    用dos批处理程序检测是否安装.netframework,并自动安装后运行指定程序(.net自启动光盘的制做)
    生成pdf文件的好东西,itextsharp
    阳春三月来了
    新年快乐!
    无法启动 MS DTC 事务管理器。LogInit 返回错误 0x2. 怎么办?
    如何获取文件在系统中的图标?
    自定义工作流程的实现方案(初稿)
    [正能量系列]女性程序员篇
    [正能量系列]失业的程序员(一)
    我们在囧途之裁员篇
  • 原文地址:https://www.cnblogs.com/kuangbin/p/3346237.html
Copyright © 2011-2022 走看看