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 }
  • 相关阅读:
    都为你整理好了,5种Java 随机方式对比!你都知道吗?
    你不知道的,Java代码性能优化的 40+ 细节,赶快收藏!
    大厂技术总监,送给刚毕业和快要毕业的程序员——7点建议
    .NET Core 微服务学习与实践系列文章目录索引(2019版)
    ManagementEventWatcher throws ManagementException with call to Stop()
    postman工具的使用
    java实体类读取属性文件,并赋值
    使用idea创建springboot的maven项目
    手写Promise实现过程
    用Javascript制作随机星星效果图
  • 原文地址:https://www.cnblogs.com/gongxijun/p/4452764.html
Copyright © 2011-2022 走看看