1473. Paint House III

Difficulty:
Related Topics:
Similar Questions:

Problem

There is a row of m houses in a small city, each house must be painted with one of the n colors (labeled from 1 to n), some houses that have been painted last summer should not be painted again.

A neighborhood is a maximal group of continuous houses that are painted with the same color.

Given an array houses, an m x n matrix cost and an integer target where:

Return the minimum cost of painting all the remaining houses in such a way that there are exactly target neighborhoods. If it is not possible, return -1.

  Example 1:

Input: houses = [0,0,0,0,0], cost = [[1,10],[10,1],[10,1],[1,10],[5,1]], m = 5, n = 2, target = 3
Output: 9
Explanation: Paint houses of this way [1,2,2,1,1]
This array contains target = 3 neighborhoods, [{1}, {2,2}, {1,1}].
Cost of paint all houses (1 + 1 + 1 + 1 + 5) = 9.

Example 2:

Input: houses = [0,2,1,2,0], cost = [[1,10],[10,1],[10,1],[1,10],[5,1]], m = 5, n = 2, target = 3
Output: 11
Explanation: Some houses are already painted, Paint the houses of this way [2,2,1,2,2]
This array contains target = 3 neighborhoods, [{2,2}, {1}, {2,2}]. 
Cost of paint the first and last house (10 + 1) = 11.

Example 3:

Input: houses = [3,1,2,3], cost = [[1,1,1],[1,1,1],[1,1,1],[1,1,1]], m = 4, n = 3, target = 3
Output: -1
Explanation: Houses are already painted with a total of 4 neighborhoods [{3},{1},{2},{3}] different of target = 3.

  Constraints:

Solution

class Solution {
    int[][][] memo;
    int INT_MAX = 100000001;
    public int minCost(int[] houses, int[][] cost, int m, int n, int target) {
        memo = new int[m][target+1][n+1];
        for(int i=0;i<m;i++){
            for(int j=0;j<target+1;j++){
                for(int k=0;k<n+1;k++){
                    memo[i][j][k] = -1;
                }
            }
        }
        int res = minCostUtil(houses,cost,m,n,target,0,0);
        return (res==INT_MAX)?-1:res;
    }
    int minCostUtil(int[] h, int[][] c, int m, int n, int t,int i, int previous){

        // GOAL BEGIN
        if(i==m){
            if(t==0){
                return 0;
            }
            return INT_MAX;
        }
        if(t<0){
            return INT_MAX;
        }
        // GOAL END

        if(memo[i][t][previous]!=-1){
            return memo[i][t][previous];
        }
        int ans = INT_MAX;

        //CONSTRAINT BEGIN
        if(h[i]==0){
            //CHOICE BEGIN
            for(int j=1;j<=n;j++){
                ans = Math.min(ans,c[i][j-1]+minCostUtil(h,c,m,n,t-((j!=previous)?1:0),i+1,j));
            }
            //CHOICE END
        } else{
            ans = minCostUtil(h,c,m,n,t-((h[i]!=previous)?1:0),i+1,h[i]);
        }
        //CONSTRAINT END

        memo[i][t][previous] = ans;
        return ans;
    }
}

Explain:

nope.

Complexity: