zoukankan      html  css  js  c++  java
  • CF286-A

    A. Mr. Kitayuta's Gift
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    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.

    给出一个字符串,问是否能向其中插入一个字符使得新的字符串是个回文串

    由于给出的字符串长度很短,最大只有10.故可以暴力求解

    要使得插入字符后新字符串成为回文串,那么该字符必须是原字符串中的某一字符

    故枚举原字符串中的所有字符,并枚举插入的位置,得到一个新串,判断是否是回文串即可.

    import java.security.PublicKey;
    import java.util.Scanner;
    public class problem1
    {
        public static void main(String[] args)
        {
            String s;
            Scanner scanner=new Scanner(System.in);
            s=scanner.nextLine();
            boolean flag=false;
            for(int i=0;i<s.length();i++)
            {
                if(flag)
                    break;
                String str;
                for(int j=0;j<=s.length();j++)
                {
                    str=s.substring(0,j)+s.charAt(i)+s.substring(j,s.length());
                    if(judget(str)&&!flag)
                    {
                        System.out.println(str);
                        flag=true;
                    }
                }
            }
            if(!flag)
                System.out.println("NA");
        }
        public static boolean judget(String s)
        {
            for(int i=0;i<s.length();i++)
                if(s.charAt(i)!=s.charAt(s.length()-1-i))
                    return false;
            return true;
        }
    }
    
  • 相关阅读:
    Android 数据库框架OrmLite的使用(二)
    Fragment响应返回键
    jQuery判断当前元素显示状态并控制元素的显示与隐藏
    Android UI设计中一些不错的示例及第三方控件
    js数组操作总结
    Easyui datagrid 设置内容超过单元格宽度时自动换行显示
    Easyui datagrid 扩展单元格textarea editor
    Easyui datagrid combobox输入框非法输入判断与事件总结
    Tomcat 参数配置相关
    单元测试_JUnit常用单元测试注解介绍及代码演示
  • 原文地址:https://www.cnblogs.com/wzsblogs/p/4288756.html
Copyright © 2011-2022 走看看