码迷,mamicode.com
首页 > 其他好文 > 详细

lintcode-515-房屋染色

时间:2020-02-19 21:05:47      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:use   new   ntc   for   value   sts   int   param   style   

public class Solution {
    /**
     * @param costs: n x 3 cost matrix
     * @return: An integer, the minimum cost to paint all houses
     */
    public int minCost(int[][] costs) {
        // write your code here
        int n = costs.length;
        if(n==0)
            return 0;
        int[][] dp = new int[n][3];
        dp[0][0]=costs[0][0];
        dp[0][1]=costs[0][1];
        dp[0][2]=costs[0][2];
        for(int i=1;i<n;++i){
            for(int j=0;j<3;++j){
                dp[i][j]=Integer.MAX_VALUE;
                for(int k=0;k<3;++k) {
                    if (k != j) {
                        dp[i][j] = Math.min(dp[i][j], dp[i - 1][k]+costs[i][j]);
                    }
                }
            }
        }
        return Math.min(dp[n-1][0],Math.min(dp[n-1][1],dp[n-1][2]));
    }
}

 

lintcode-515-房屋染色

标签:use   new   ntc   for   value   sts   int   param   style   

原文地址:https://www.cnblogs.com/t1314/p/12332688.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!