HDU 3294 Girls' research (Manacher 알고리즘

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.
InputInput 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. OutputPlease 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!

문제 풀이:
제목:
먼저 문자 하 나 를 드 리 겠 습 니 다. 이 문 자 를 대표 하여 'a' 를 표시 한 다음 에 다른 25 개의 문 자 는 이 문자 에 따라 계산 한 다음 에 문자열 을 드 리 겠 습 니 다. 가장 긴 답장 문자열 의 좌우 점 을 구 할 수 있 습 니 다. 만약 에 같은 길이 의 출력 에서 찾 은 첫 번 째 문자열 을 출력 하고 요구 에 따라 변 경 된 답장 문자열 을 출력 합 니 다.
생각:
manacher 에서 조금 만 수정 하면 됩 니 다. 바로 그 가 처음에 입력 한 문 자 를 처리 하 는 것 이 좀 번 거 로 웠 습 니 다.추산 해 보시 면 됩 니 다.
코드:
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define lson k*2
#define rson k*2+1
#define M (t[k].l+t[k].r)/2
#define INF 100861111
#define ll long long
#define eps 1e-15
int p[400005];
int v[30];
char str[400005];
int l,r;
int manacher(char s[])//      
{
    int i;
    for(i=1;s[i];i++)
        str[i*2]=s[i],str[i*2+1]='#';
    str[0]='?',str[1]='#',str[i*2]='\0';
    int res=0, k=0,maxk=0;
    for(int i = 2; str[i]; i++)
    {
        p[i]=imaxk)
        {
            k=i,maxk=i+p[i];
        }
        if(res

=0;i--,j--) v[i]=j; t=manacher(s); if(t<2) { printf("No solution!
"); } else { printf("%d %d
",l,r); l++,r++; for(i=l;i<=r;i++) { if(v[s[i]-'a']>=0) printf("%c",v[s[i]-'a']+'a'); else printf("%c",26+v[s[i]-'a']+'a'); } printf("
"); } } return 0; }

좋은 웹페이지 즐겨찾기