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 test(s)
input
revive
output
reviver
input
ee
output
eye
input
kitayuta
output
NA
Note

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.

传送门:http://codeforces.com/contest/505/problem/A

题意分析:1.字符串全为小写,长度不超过10    2.允许在字符串任意位置插入一个小写字母,判断是否能够变为回文串。 如果能, 输出该串。 不能, 输出 ‘NA’

MA:实在想不出什么好的优化算法, 只好暴力了~~  思路是遍历每个位置,把字符串数组存到另一数组中,每次并空出一位, 枚举26个字母(其实可以只枚举原串中的就足够)直到变为回文串~~~  真的是好粗暴。。

代码:

#include <cstring>
#include <cstdio>
const int maxn = + ;
char s[maxn], b[maxn];
int is_p(int n)
{
for(int i = , j = n-; i <= j; i++, j--) if(b[i] != b[j]) return ;
return ;
} int solve()
{
int n = strlen(s);
memset(b, , sizeof(b));
for(int i = ; i <= n; i++){
for(int j = ; j < i; j++) b[j] = s[j];
for(int j = i; j < n; j++) b[j+] = s[j];
for(char k = 'a'; k <= 'z'; k++){ //这里可以优化
b[i] = k;
if(is_p(n+)){
printf("%s\n", b);
return ;
}
}
}
return ;
}
int main()
{
while(~scanf("%s", s)){
if(!solve()) printf("NA\n");
memset(s, , sizeof(s));
}
return ;
}

最新文章

  1. Git(远程仓库:git@oschina)-V2.0
  2. vs2015提示中文
  3. [转]PowerDesigner设置集锦
  4. MySQL的安装与配置
  5. OFFSET IN 使用举例
  6. 去掉comments
  7. Java学习之路(二)
  8. 清理PC垃圾
  9. 《University Calculus》-chaper8-无穷序列和无穷级数-比值审敛法
  10. 俄罗斯方块:Python实现
  11. Div实现滚动条效果
  12. 【Python】 Web开发框架的基本概念与开发的准备工作
  13. Web安全工具大汇聚
  14. How to set asp.net Identity cookies expires time
  15. 使用Python制作第一个爬虫程序
  16. Python基础之Python分类
  17. msq_table&#39;s methods2
  18. CF特征码遍历
  19. Property Injection in Asp.Net Core (转载)
  20. WPF代码模板-布局部分

热门文章

  1. 如何在 iOS 8 中使用 Swift 实现本地通知(下)
  2. 一道模板元编程题源码解答(replace_type)
  3. Spark目录
  4. 基于css3的文字3D翻转特效
  5. 关于composer
  6. LeetCode30 Substring with Concatenation of All Words
  7. XACML-PolicySet与request结构简介
  8. 【python调用windows CLI】调用adb统计Android app的流量消耗
  9. Oracle基础 PL-SQL编程基础(4) 异常处理
  10. 统计机器学习(statistical machine learning)