自己没写出来,看了别人的才会
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
char s[1001];
int dp[1001];//dp数组
const int big=999999999;
int if_hui (int l,int r)
{
while(l<r){
if(s[l]!=s[r]){
return 0;
}
++l;
--r;
}
return 1;
}
int main()
{
int T;
scanf("%d",&T);
while(T--)//多case
{
scanf("%s",s);
memset(dp,0,sizeof(dp));//重置数组
int len=strlen(s);
for (int i=0;i<len;i++)
{
int mins=big;
for (int j=0;j<=i;j++)
{
int t=1;//回文串的最小数量为1;
if (if_hui(j,i))//总是会出现的,因为当i==j时,本身就是回文串
{
if (j>0)
{t=dp[j-1]+1;}//dp的递推
mins=min(mins,t);
//printf("i=%d j=%d min=%d t = %d ci[j-1]=%d\n",i,j,mins,t,dp[j-1]);
}
}
dp[i]=mins;
//printf("mins=%d\n",mins);
}
printf("%d\n",dp[len-1]);
}
return 0;
}
决!