zoukankan      html  css  js  c++  java
  • code forces 505A


    Mr. Kitayuta's Gift
    Time Limit:1000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u

    Description

    Mr. Kitayuta has kindly given you a string s consisting of lowercase English letters. You are asked to insert exactly one lowercase English letter into s to make it a palindrome. A palindrome is a string that reads the same forward and backward. For example, "noon", "testset" and "a" are all palindromes, while "test" and "kitayuta" are not.

    You can choose any lowercase English letter, and insert it to any position of s, possibly to the beginning or the end of s. You have to insert a letter even if the given string is already a palindrome.

    If it is possible to insert one lowercase English letter into s so that the resulting string will be a palindrome, print the string after the insertion. Otherwise, print "NA" (without quotes, case-sensitive). In case there is more than one palindrome that can be obtained, you are allowed to print any of them.

    Input

    The only line of the input contains a string s (1 ≤ |s| ≤ 10). Each character in s is a lowercase English letter.

    Output

    If it is possible to turn s into a palindrome by inserting one lowercase English letter, print the resulting string in a single line. Otherwise, print "NA" (without quotes, case-sensitive). In case there is more than one solution, any of them will be accepted.

    Sample Input

    Input
    revive
    
    Output
    reviver
    
    Input
    ee
    
    Output
    eye
    Input
    kitayuta
    
    Output
    NA
    

    Hint

    For the first sample, insert 'r' to the end of "revive" to obtain a palindrome "reviver".

    For the second sample, there is more than one solution. For example, "eve" will also be accepted.

    For the third sample, it is not possible to turn "kitayuta" into a palindrome by just inserting one letter.

    #include<cstdio>
    #include<cstring>
    using namespace std;
    const int N = 20;
    char s[N], p[N];
    int l;
    bool ispal()
    {
        for(int i = 0; i < (l + 1) / 2; ++i)
            if(p[i] != p[l - i]) return false;
        return true;
    }
    
    int main()
    {
        int i, j, k;
        scanf("%s", s);
        l = strlen(s);
        for(char c = 'a'; c <= 'z'; ++c)
        {
            for(k = 0; k <= l; ++k)
            {
                i = j = -1;
                while(i < k - 1) p[++j] = s[++i];
                p[++j] = c;
                while(i < l - 1) p[++j] = s[++i];
                if(ispal())
                {
                    printf("%s
    ", p);
                    return 0;
                }
            }
        }
        printf("NA
    ");
        return 0;
    }
    

  • 相关阅读:
    HDU 4389 数位dp
    Codeforces Round #405 (rated, Div. 2, based on VK Cup 2017 Round 1)A B C 水 并查集 思路
    Codeforces Round #385 (Div. 2)A B C 模拟 水 并查集
    Codeforces Round #404 (Div. 2)A B C二分
    HDU 2586 倍增法求lca
    Codeforces Round #209 (Div. 2)A贪心 B思路 C思路+快速幂
    Codeforces Round #384 (Div. 2) A B C D dfs序+求两个不相交区间 最大权值和
    vim出现“E212: Can't open file for writing”的处理办法
    centos7 开机/etc/rc.local 不执行的问题
    CentOS 系统状况查看
  • 原文地址:https://www.cnblogs.com/nyist-xsk/p/7264899.html
Copyright © 2011-2022 走看看