博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVA 11584 Partitioning by Palindromes (简单dp)
阅读量:5233 次
发布时间:2019-06-14

本文共 970 字,大约阅读时间需要 3 分钟。

题意:给一个字符串, 要求把它分割成若干个子串,使得每个子串都是回文串。问最少可以分割成多少个。

分析:dp[i] 为字符0~i划分的最小回文串的个数,则dp[i]=min(dp[i],dp[j]+1|s[j+1~i]为回文串)。

代码:

#include #include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define ll long long#define mod 1000000007#define mem(a) memset(a,0,sizeof(a))using namespace std;const int maxn = 1000 + 5 , inf = 0x3f3f3f3f ;char s[maxn];int dp[maxn];bool vis[maxn][maxn];bool can(char *s,int L,int R){ int RR = R; int LL = L; while(RR>=LL){ if(s[RR--]!=s[LL++]) return false; } return true;}int main(){// freopen("in.txt","r",stdin);// freopen("out.txt","w",stdout); int n; scanf("%d",&n); while(n--){ mem(dp); scanf("%s",s+1); mem(vis); int len = strlen(s+1); for(int i=1;i<=len;i++){ dp[i]=i+1; for(int j=1;j<=i;j++){ if(can(s,j,i)) dp[i]=min(dp[i],dp[j-1]+1); } } cout<
<

转载于:https://www.cnblogs.com/seven7777777/p/10278728.html

你可能感兴趣的文章
getopt_long
查看>>
TensorFlow MNIST CNN 代码
查看>>
javascript之Style物
查看>>
JSON跨域解决方案收集
查看>>
SSH框架整合总结
查看>>
图的深度优先遍历
查看>>
C# 之 提高WebService性能大数据量网络传输处理
查看>>
md5sum命令详解
查看>>
[bzoj1004] [HNOI2008] Cards
查看>>
Merge into的使用具体解释-你Merge了没有
查看>>
Linux安装程序Anaconda分析
查看>>
如何在chrome上打开SSL3.0
查看>>
应该是实例化对象的没有对属性赋值时,自动赋值为null,但不是空指针对象引用...
查看>>
从网易与淘宝的font-size思考前端设计稿与工作流
查看>>
原生HttpClient详细使用示例
查看>>
几道面试题
查看>>
搜索引擎-SHODAN
查看>>
Factory Design Pattern
查看>>
python中贪婪与非贪婪
查看>>
guava API整理
查看>>