1. 程式人生 > >【LeetCode】#132分割回文串II(Palindrome Partitioning II)

【LeetCode】#132分割回文串II(Palindrome Partitioning II)

【LeetCode】#132分割回文串II(Palindrome Partitioning II)

題目描述

給定一個字串 s,將 s 分割成一些子串,使每個子串都是迴文串。
返回符合要求的最少分割次數。

示例

輸入: “aab”
輸出: 1
解釋: 進行一次分割就可將 s 分割成 [“aa”,“b”] 這樣兩個迴文子串。

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.

Example

Input: “aab”
Output: 1
Explanation: The palindrome partitioning [“aa”,“b”] could be produced using 1 cut.

解法

class Solution {
    public int minCut(String s) {
        int[][] dp = new int[s.length()][s.length()];
        int[] cut = new int[s.length()+1];
        for(int i=s.length()-1; i>=0; i--){
            cut[i] = Integer.MAX_VALUE;
            for(int j=i; j<s.length(); j++){
                if(s.charAt(i)==s.charAt(j) && (j-i<=1 || dp[i+1][j-1]==1)){
                    dp[i][j] = 1;
                    cut[i] = Math.min(1+cut[j+1], cut[i]);
                }
            }
        }
        return cut[0]-1;
    }
}