OpenJudge

1159:Palindrome

总时间限制:
3000ms
内存限制:
65536kB
描述
A palindrome is a symmetrical string, that is, a string read identically from left to right as well as from right to left. You are to write a program which, given a string, determines the minimal number of characters to be inserted into the string in order to obtain a palindrome.

As an example, by inserting 2 characters, the string "Ab3bd" can be transformed into a palindrome ("dAb3bAd" or "Adb3bdA"). However, inserting fewer than 2 characters does not produce a palindrome.
输入
Your program is to read from standard input. The first line contains one integer: the length of the input string N, 3 <= N <= 5000. The second line contains one string with length N. The string is formed from uppercase letters from 'A' to 'Z', lowercase letters from 'a' to 'z' and digits from '0' to '9'. Uppercase and lowercase letters are to be considered distinct.
输出
Your program is to write to standard output. The first line contains one integer, which is the desired minimal number.
样例输入
5
Ab3bd
样例输出
2
来源
IOI 2000
全局题号
161
添加于
2009-10-29
提交次数
1820
尝试人数
452
通过人数
369
您的评价 很水 简单 一般 较难 变态
  • 标签(多个标签用空格分隔):
  • 常用标签:
    递归   动态规划   贪心   搜索   枚举   模拟   数学   字符串处理   几何   高精度计算   图论  

共有2人评分

50.0%
0.0%
0.0%
50.0%
0.0%

已有的标签

动态规划(2) 字符串处理(1) 马拉车(1)