http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=34398
题意:将一个单词划分为几个回文串使得回文串的数量尽量少
思路:预处理,确定s[i ] - s[j]是否为回文串。dp[i]表示的是从0到i的字符串最少回文串的个数,将dp[i]初始化为 i + 1代表每个回文串的长度都为1时回文串的个数。然后进行状态转移:dp[i] = min{dp[j - 1] + 1,dp[i]}前提是s[i]-s[j]为回文串。由状态方程可知j应从i开始,到0
代码:
#include <iostream>
#include <cstdio>
#include <cstring>
#include <sstream>
#include <string>
#include <algorithm>
#include <list>
#include <map>
#include <vector>
#include <queue>
#include <stack>
#include <cmath>
#include <cstdlib>
using namespace std;
char c[1005];
bool s[1005][1005];
int dp[1005];
int n;
bool judge(int a,int b)
{
if(a < 0 || a >= n || b < 0 || b >= n)
return false;
return true;
}
void init()
{
memset(s,false,sizeof(s));
int t = 1;
for(int i = 0; i < n; i ++)
{
s[i][i] = true;
}
for(int i = 0; i < n; i ++)
{
t = 1;
while(1)
{
if(judge(i - t,i + t) == false || c[i - t] != c[i + t])//等于t的时候是不成立的
break;
s[i + t][i - t] = true;
t ++;
}
t = 1;
while(1)
{
if(judge(i - t + 1,i + t) == false || c[i - t + 1] != c[i + t])//等于t的时候是不成立的
break;
s[i + t][i - t + 1] = true;
t ++;
}
}
}
int main()
{
//freopen("in.txt","r",stdin);
int T;
scanf("%d",&T);
while(T --)
{
scanf("%s",c);
n = strlen(c);
init();
for(int i = 0; i < n; i ++)
{
dp[i] = i + 1;
for(int j = 0; j <= i; j ++)
{
if(s[i][j] == true)
{
if(j != 0)
dp[i] = min(dp[j - 1] + 1,dp[i]);
else
dp[i] = min(1,dp[i]);
}
}
}
printf("%d\n",dp[n - 1]);
}
return 0;
}