UVa 11584 - Partitioning by Palindromes(DP)

给出一个字符串,判断他最少划分成几个回文串。
枚举字符串终点,转移方程为 d [ i ] = m i n ( d [ i ] , d [ j − 1 ] + 1 ) 。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=1010;
char s[maxn];
int d[maxn];
inline bool ok(int l,int r){
while(l<=r){
if(s[l]!=s[r]) return false;
++l,--r;
}
return true;
}
int main(){
int t;
scanf("%d",&t);
while(t--){
scanf("%s",s);
int n=(int)strlen(s);
for(int i=0;i<n;++i){
d[i]=i+1;
for(int j=0;j<=i;++j)
if(ok(j,i)) d[i]=min(d[i],d[j-1]+1);
}
printf("%d\n",d[n-1]);
}
return 0;
}

** 本文迁移自我的CSDN博客,格式可能有所偏差。 **