首页 > 代码库 > POJ 1159 Palindrome
POJ 1159 Palindrome
Palindrome
Time Limit: 3000MS | Memory Limit: 65536K | |
Total Submissions: 54047 | Accepted: 18672 |
Description
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.
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.
Input
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.
Output
Your program is to write to standard output. The first line contains one integer, which is the desired minimal number.
Sample Input
5Ab3bd
Sample Output
2
大致题意:给定一个字符串,问最少插入多少字符,使该字符变成回文字符串。
思路:设原字符串序列为X,逆序列为Y,则最少需要补充的字母数=X的长度-X和Y的最长公共子序列的长度。这道题有意思的地方不是发现这个公式,而是对空间的压缩处理。出具范围达到了5000,若开静态数组用int肯定会超,当时用short就会过了。最好的办法就是用滚动数组。求LCS的状态转移方程为:d[i][j]=d[i-1][j]+d[i][j-1];上面的d[i][j]只依赖于d[i-1][j],d[i][j-1];运用滚动数组d[i%2][j]=d[(i-1)%2][j]+d[i%2][j-1];滚动数组d[i%2][j]=d[(i-1)%2][j]+d[i%2][j-1];滚动数组实际是一种节省空间的方法,在时间上没有优势。
1 #include<iostream> 2 #include<string.h> 3 #include<algorithm> 4 #include<cmath> 5 #include<sstream> 6 #include<vector> 7 using namespace std; 8 int dp[2][5005]; 9 int main()10 {11 string s1,s2;12 int i,n,j;13 while(cin>>n)14 {15 cin>>s1;16 s2=s1;17 reverse(s1.begin(),s1.end());18 memset(dp,0,sizeof(dp));19 for(i=1;i<=n;i++)20 {21 for(j=1;j<=n;j++)22 {23 dp[i%2][j]=max(dp[(i-1)%2][j],dp[i%2][j-1]);24 if(s1[i-1]==s2[j-1])25 {26 int temp=dp[(i-1)%2][j-1]+1;27 dp[i%2][j]=max(dp[i%2][j],temp);28 }29 }30 }31 cout<<n-dp[n%2][n]<<endl;32 }33 return 0;34 }
POJ 1159 Palindrome
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。