zoukankan      html  css  js  c++  java
  • POJ3974

    Andy the smart computer science student was attending an algorithms class
    when the professor asked the students a simple question, "Can you propose
    anefficient 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
    

    思路:
    给一个字符串,求连续最长的回文子串的长度,纯马拉车算法,
    以下可作为模板

    #include <string.h>
    #include <stdio.h>
    #include <math.h>
    #include <algorithm>
    using namespace std;
    const int maxn=2e6+10;
    char ss[maxn<<1],c[maxn];
    int p[maxn<<1],len;
    void manacher(char s[],int l)
    {
    	 len=0;
    	 int i,j;
    	ss[len++]='$',ss[len++]='#';
    	for (i=0;i<l;i++)
    	{
    		ss[len++]=s[i];
    		ss[len++]='#';
    	}
    	
    	int mx=0,C=0;
    	int ans=0;
    	for (i=1;i<len;i++)
    	{
    		if (mx>i)
    		p[i]=min(mx-i,p[2*C-i]);
    		else
    		p[i]=0;
    		while(ss[i+p[i]]==ss[i-p[i]])
    		{
    			p[i]++;
    		}
    		if (i+p[i]>mx)
    		{
    			mx=i+p[i];
    			C=i;
    		}
    	}
    }
    int main()
    {
    	int i,j,n;
    	int flag=0;
    	while(~scanf("%s",c)&&strcmp(c,"END")!=0)
    	{
    		flag++;
    		printf("Case %d: ",flag);
    		manacher(c,strlen(c));	
    		int maxx=-1;
    		for (i=1;i<len;i++)
    			maxx=max(maxx,p[i]);
    		printf("%d
    ",maxx-1);
    	}
    	return 0;
    }
  • 相关阅读:
    Fanvas是一个把swf转为html5 canvas动画的系统
    截取中文字符防止乱码
    手机号码验证--区号验证--电话号验证--分机号验证--手机号和固定电话二选一--用户名只能为汉字或者英文请--邮箱账号
    laravel5.4学习--laravel基本路由
    laravel5.4学习--laravel目录结构
    laravel5.4学习--laravel安装
    laravel数据迁移
    laravel数据迁移的时候遇到的字符串长度的问题
    TcxLookupComboBox
    Tcxgrid使用例子
  • 原文地址:https://www.cnblogs.com/shidianshixuan/p/14321659.html
Copyright © 2011-2022 走看看