设为首页 加入收藏

TOP

Leetcode--Palindrome Partitioning II
2015-07-20 17:42:36 来源: 作者: 【 】 浏览:2
Tags:Leetcode--Palindrome Partitioning

Problem Description:

Given a string s, partition s such that every substring of the partition is a palindrome.

Return the minimum cuts needed for a palindrome partitioning of s.

For example, given s = "aab",
Return 1 since the palindrome partitioning ["aa","b"] could be produced using 1 cut.

分析:设cut[i] = 区间[0,i]之间最小的cut数,n为字符串长度, 则,
cut[i] = min(cut[i],1+cut[j] ) 0<=j 有个转移函数之后,一个问题出现了,就是如何判断[j,i]是否是回文?每次都从i到j比较一遍?太浪费了,这里也是一个DP问题。
定义函数
flag[i][j] = true if [i,j]为回文
那么
flag[i][j] = str[i] == str[j] && P[i+1][j-1];

class Solution {
public:

    int minCut(string s) {
        //if(s.size()==0)
        //    return 0;
        int n=s.size();
        vector
   
     > flag(n,vector
    
     (n,0)); vector
     
       cut(n+1); for(int i=0;i<=n;i++) cut[i]=i-1; for(int i=0;i
      
       

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇UVALive 6432 Influence 搜索 剪.. 下一篇zoj 3812 We Need Medicine (dp ..

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·工业机器人TCP校准中 (2025-12-25 05:19:17)
·opc 通讯协议与 TCP (2025-12-25 05:19:15)
·labview中tcp/ip通信 (2025-12-25 05:19:13)
·新书介绍《Python数 (2025-12-25 04:49:47)
·怎么利用 Python 进 (2025-12-25 04:49:45)