HDU 3294 Girls' research (Manacher 알고리즘
3493 단어 ACM데이터 구조Manacher 알고리즘
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
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
ACM - 계산 기하학 적 Pick - up sticks -- poj 2653Description Stan has n sticks of various length. The data for each case start with 1 <= n <= 100000, the number of stick...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.