URAL 1297. Palindrome

1. 题目

http://acm.timus.ru/problem.aspx?space=1&num=1297

1297. Palindrome

Time limit: 1.0 second
Memory limit: 64 MB

The “U.S. Robots” HQ has just received a rather alarming anonymous letter. It states that the agent from the competing «Robots Unlimited» has infiltrated into “U.S. Robotics”. «U.S. Robots» security service would have already started an undercover operation to establish the agent’s identity, but, fortunately, the letter describes communication channel the agent uses. He will publish articles containing stolen data to the “Solaris” almanac. Obviously, he will obfuscate the data, so “Robots Unlimited” will have to use a special descrambler (“Robots Unlimited” part number NPRx8086, specifications are kept secret).
Having read the letter, the “U.S. Robots” president recalled having hired the “Robots Unlimited” ex-employee John Pupkin. President knows he can trust John, because John is still angry at being mistreated by “Robots Unlimited”. Unfortunately, he was fired just before his team has finished work on the NPRx8086 design.
So, the president has assigned the task of agent’s message interception to John. At first, John felt rather embarrassed, because revealing the hidden message isn’t any easier than finding a needle in a haystack. However, after he struggled the problem for a while, he remembered that the design of NPRx8086 was still incomplete. “Robots Unlimited” fired John when he was working on a specific module, the text direction detector. Nobody else could finish that module, so the descrambler will choose the text scanning direction at random. To ensure the correct descrambling of the message by NPRx8086, agent must encode the information in such a way that the resulting secret message reads the same both forwards and backwards.
In addition, it is reasonable to assume that the agent will be sending a very long message, so John has simply to find the longest message satisfying the mentioned property.
Your task is to help John Pupkin by writing a program to find the secret message in the text of a given article. As NPRx8086 ignores white spaces and punctuation marks, John will remove them from the text before feeding it into the program.

Input

The input consists of a single line, which contains a string of Latin alphabet letters (no other characters will appear in the string). String length will not exceed 1000 characters.

Output

The longest substring with mentioned property. If there are several such strings you should output the first of them.

Sample

input output
ThesampletextthatcouldbereadedthesameinbothordersArozaupalanalapuazorA
ArozaupalanalapuazorA
Problem Author: Eugene Krokhalev
Problem Source: IX Open Collegiate Programming Contest of the High School Pupils (13.03.2004)

2. 思路

给出一个字符串,求其中最长的回文子序列。

字符串最大长度为1000,直接暴力搜索。从字符串中间向两端比较,判断是否为回文,注意区分两种情况:

  • 回文字符串长度为偶数,如abba,中间两个字符须相同;
  • 回文字符串长度为奇数,如aba,中间字符任意。

3. 代码

#include <cstdio>
#include <cstring>

const int MAX_LENGTH = 1001;

void solveP9b_Palindrome();

int main() {
    solveP9b_Palindrome();
    return 0;
}

char str[MAX_LENGTH];
void solveP9b_Palindrome() {
    scanf("%s", str);

    int len = strlen(str);
    int start = 0, end = 0, maxPalindrome = 1;
    for (int i = 0; i < len; ++i) {
        for (int j = 1; i - j >= 0 && i + j < len; ++j) {
            if (str[i - j] == str[i + j]) {
                if (j * 2 + 1 > maxPalindrome) {
                    maxPalindrome = j * 2 + 1;
                    start = i - j;
                    end = i + j;
                }
            }else {
                break;
            }
        }

        int k = i + 1;
        for (int j = 0; i - j >= 0 && k + j < len; ++j) {
            if (str[i - j] == str[k + j]) {
                if (j * 2 + 2 > maxPalindrome) {
                    maxPalindrome = j * 2 + 2;
                    start = i - j;
                    end = k + j;
                }
            } else {
                break;
            }
        }
    }

    for (int i = start; i <= end; ++i) {
        printf("%c", str[i]);
    }
    printf("\n");
}