码迷,mamicode.com
首页 > 其他好文 > 详细

NYOJ 37 回文字符串

时间:2017-07-01 09:58:00      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:auto   1.5   3.3   超过   pad   round   memset   one   接下来   

感觉非常坑的一道题!!!想了非常多解法都是错的,百度了一下解法,真是醉了。

。。

解法:把字符串反过来。求最长公共子序列


时间限制:3000 ms  |  内存限制:65535 KB

难度:4

  • 描写叙述

  • 所谓回文字符串,就是一个字符串,从左到右读和从右到左读是全然一样的,比方"aba"。当然。我们给你的问题不会再简单到推断一个字符串是不是回文字符串。

    如今要求你,给你一个字符串。可在任何位置加入字符,最少再加入几个字符,能够使这个字符串成为回文字符串。

    • 输入

    • 第一行给出整数N(0<N<100)
      接下来的N行,每行一个字符串,每一个字符串长度不超过1000.

    • 输出

    • 每行输出所需加入的最少字符数

    • 例子输入

    • 1
      Ab3bd
    • 例子输出

    • 2


#include<iostream>
#include<cstring>
#include<string>

using namespace std;

int a[1010][1010];

int max(int x, int y)
{
	return x>y ? x : y;
}

int main()
{
	int test,i,j,k,len1,lcs;
	string s1,s2;
	cin>>test;
	while(test--)
	{
		cin>>s1;
		s2=s1;		//刚開始这一步忽略了。想到了STL中讲的,恍然大悟
		len1=s1.length();
		for(i=0;i<len1;i++)
			s2[i]=s1[len1-1-i];
		memset(a,0,sizeof(a));
		lcs=0;
		for(i=1;i<len1+1;i++)
			for(j=1;j<len1+1;j++)
			{
				if(s1[i-1]==s2[j-1])
					a[i][j]=a[i-1][j-1]+1;
				else
					a[i][j]=max(a[i-1][j],a[i][j-1]);

				if(a[i][j]>lcs)
					lcs=a[i][j];
			}
			cout<<len1-lcs<<endl;
	}
	return 0;
}


NYOJ 37 回文字符串

标签:auto   1.5   3.3   超过   pad   round   memset   one   接下来   

原文地址:http://www.cnblogs.com/mfmdaoyou/p/7101266.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!