zoukankan      html  css  js  c++  java
  • POJ----(3974 )Palindrome [最长回文串]

        

    Time Limit: 15000MS   Memory Limit: 65536K
    Total Submissions: 5121   Accepted: 1834

    Description

    Andy the smart computer science student was attending an algorithms class when the professor asked the students a simple question, "Can you propose an efficient algorithm to find the length of the largest palindrome in a string?" 

    A string is said to be a palindrome if it reads the same both forwards and backwards, for example "madam" is a palindrome while "acm" is not. 

    The students recognized that this is a classical problem but couldn't come up with a solution better than iterating over all substrings and checking whether they are palindrome or not, obviously this algorithm is not efficient at all, after a while Andy raised his hand and said "Okay, I've a better algorithm" and before he starts to explain his idea he stopped for a moment and then said "Well, I've an even better algorithm!". 

    If you think you know Andy's final solution then prove it! Given a string of at most 1000000 characters find and print the length of the largest palindrome inside this string.

    Input

    Your program will be tested on at most 30 test cases, each test case is given as a string of at most 1000000 lowercase characters on a line by itself. The input is terminated by a line that starts with the string "END" (quotes for clarity). 

    Output

    For each test case in the input print the test case number and the length of the largest palindrome. 

    Sample Input

    abcbabcbabcba
    abacacbaaaab
    END

    Sample Output

    Case 1: 13
    Case 2: 6

    Source

    关于manacher算法..........()

       代码:

      

     1 #include<stdio.h>
     2 #include<stdlib.h>
     3 #include<string.h>
     4 #include<algorithm>
     5 #define maxn 1000010
     6 char ss[maxn];
     7 char str[maxn << 1L];
     8 int var[maxn << 1L];
     9 
    10 int manacher() {
    11 
    12 
    13     int len = 2, mx_l = 0, pos = 0;
    14     str[0] = '$';
    15     str[1] = '#';
    16     for (int i = 0; ss[i] != ''; i++) {
    17         str[len++] = ss[i];
    18         str[len++] = '#';
    19     }
    20     str[len] = '';
    21     for (int i = 0; i<len; i++) {
    22         var[i] = mx_l>i ? std::min(var[2 * pos - i], mx_l - i) : 1;
    23         while (str[i + var[i]] == str[i - var[i]])++var[i];
    24         if (mx_l<i + var[i]) {
    25             mx_l = i + var[i];
    26             pos = i;
    27         }
    28     }
    29     return len;
    30 }
    31 
    32 int main() {
    33 
    34     int cnt = 1, len = 0, res = 0;
    35     while (scanf("%s", ss) != EOF) {
    36 
    37         if (ss[0] == 'E') break;
    38         len = manacher();
    39         res = 0;
    40         for (int i = 0; i<len; i++)
    41             res =std::max(res, var[i]);
    42         memset(str, 0, sizeof(char)*len);
    43         printf("Case %d: %d
    ", cnt++, res-1);
    44     }
    45     return 0;
    46 }
  • 相关阅读:
    第一篇 C#模拟http请求抓取数据
    asp.net webService添加头文件验证
    好文记录地址
    关于邮件发送和邮件附件接收方面
    sql 查询时间当前时间少7天
    20190729研究和学习篇
    maven 打包 时出现非法字符: /65279错误
    .netcore开发教程系列之(四)创建web应用程序-razor页面模式
    .netcore开发教程系列之(四)创建web应用程序-Blazor模式
    .netcore开发教程系列之(三)创建web应用程序-Mvc模式
  • 原文地址:https://www.cnblogs.com/gongxijun/p/4452764.html
Copyright © 2011-2022 走看看