HDU----(3294)Girls' research(manacher)

本文介绍了一种字符变换技巧及其在寻找最长回文子串中的应用,详细阐述了算法实现过程及输出格式。

Girls' research

Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)
Total Submission(s): 537    Accepted Submission(s): 199


Problem Description
One day, sailormoon girls are so delighted that they intend to research about palindromic strings. Operation contains two steps:
First step: girls will write a long string (only contains lower case) on the paper. For example, "abcde", but 'a' inside is not the real 'a', that means if we define the 'b' is the real 'a', then we can infer that 'c' is the real 'b', 'd' is the real 'c' ……, 'a' is the real 'z'. According to this, string "abcde" changes to "bcdef".
Second step: girls will find out the longest palindromic string in the given string, the length of palindromic string must be equal or more than 2.
 

 

Input
Input contains multiple cases.
Each case contains two parts, a character and a string, they are separated by one space, the character representing the real 'a' is and the length of the string will not exceed 200000.All input must be lowercase.
If the length of string is len, it is marked from 0 to len-1.
 

 

Output
Please execute the operation following the two steps.
If you find one, output the start position and end position of palindromic string in a line, next line output the real palindromic string, or output "No solution!".
If there are several answers available, please choose the string which first appears.
 

 

Sample Input
b babd
 
a abcd
 

 

Sample Output
0 2
aza
No solution!
 

 

Author
wangjing1111
 

 

Source
 
代码:题目意思:
给定一个字符,以该字符作为'a'字符,举列子: c abac , c=a; b=z ,a=y;
 然后找出他的最长回文子串,标出他的起始位置和最终位置...然后输出它的回文串(变换后的)
做法:  先用manacher求出它的最长回文串,算法起始点,可以考虑另外开一个数组,来存储原始字串....然后依据起始和结尾点来输出即可
,采用manacher算法处理回文子串
 
 
代码:
 1 #include<stdio.h>
 2 #include<string.h>
 3 #include<stdlib.h>
 4 #define maxn 400050
 5 char str[maxn];
 6 int rad[maxn];
 7 int Min(int a,int b){
 8   return a<b?a:b;
 9 }
10 void init(int len,char s[]){
11     memset(rad,0,sizeof(int)*(2*len+2));
12     s[len*2+2]='\0';
13     int i,j=1;
14   for(i=len*2+1;i>0;i--){
15       if(i&1) s[i]='#';
16   else{ s[i]=s[len-j];
17      j++;
18    }
19   }
20   s[0]='$'; //防止溢出
21 }
22 int manacher(int len){
23     int id,i,ans=0;
24     for(i=1;i<len*2+1;i++){
25      if(id+rad[id]>i)  rad[i]=Min(rad[id*2-i],id+rad[id]-i);
26      while(str[i-rad[i]]==str[i+rad[i]]) rad[i]++;
27      if(i+rad[i]>id+rad[id]) id=i;
28      if(ans<rad[i])ans=rad[i];
29     }
30     return ans;
31 }
32 int main(){
33   char sav[2];
34    int len,i;
35    //system("call test.in");
36    //freopen("test.in","r",stdin);
37    // fclose(stdin);
38    while(scanf("%s%s",sav,str)!=EOF){
39      len=strlen(str);
40      init(len,str);
41      int ans=manacher(len);
42      if(ans<=2)puts("No solution!");
43      else{
44      for(i=1;i<len*2+1;i++)
45          if(ans==rad[i]) break;
46          int st,en;
47          st=(i-ans)/2;
48          en=st+ans-2;
49         printf("%d %d\n",st,en);
50       for(int j=(st+1)*2;j<(st+ans)*2;j+=2){
51             if(str[j]-(sav[0]-'a')<'a')
52                printf("%c",str[j]+('z'-sav[0]+1));
53             else
54                printf("%c",str[j]-(sav[0]-'a'));
55       }
56       puts("");
57      }
58    }
59   return 0;
60 }
View Code

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值