博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Paint House II
阅读量:6574 次
发布时间:2019-06-24

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

There are a row of n houses, each house can be painted with one of the k colors. The cost of painting each house with a certain color is different. You have to paint all the houses such that no two adjacent houses have the same color.

The cost of painting each house with a certain color is represented by a n x k cost matrix. For example, costs0 is the cost of painting house 0 with color 0; costs1 is the cost of painting house 1 with color 2, and so on... Find the minimum cost to paint all houses.

Note: All costs are positive integers.

Follow up: Could you solve it in O(nk) runtime?

 

public class Solution {    public int minCostII(int[][] costs) {        if(costs != null && costs.length == 0) return 0;        int prevMin = 0, prevSec = 0, prevIdx = -1;        for(int i = 0; i < costs.length; i++){            int currMin = Integer.MAX_VALUE, currSec = Integer.MAX_VALUE, currIdx = -1;            for(int j = 0; j < costs[0].length; j++){                costs[i][j] = costs[i][j] + (prevIdx == j ? prevSec : prevMin);                // 找出最小和次小的,最小的要记录下标,方便下一轮判断                if(costs[i][j] < currMin){                    currSec = currMin;                    currMin = costs[i][j];                    currIdx = j;                } else if (costs[i][j] < currSec){                    currSec = costs[i][j];                }            }            prevMin = currMin;            prevSec = currSec;            prevIdx = currIdx;        }        return prevMin;    }}

 

转载于:https://www.cnblogs.com/jxr041100/p/8435104.html

你可能感兴趣的文章
AOP jdk动态代理
查看>>
windows常用操作
查看>>
NYOJ-85 有趣的数 AC 分类: NYOJ ...
查看>>
(一)linux下hadoop安装配置
查看>>
Google七项不得不知的搜索技巧
查看>>
FireFox不支持InnerText的解决方法
查看>>
jsp打印
查看>>
从类开始
查看>>
iOS中真机连接电脑运行程序出现问题
查看>>
java安卓如何实现定义接口
查看>>
Union大小
查看>>
南邮CTF--bypass again
查看>>
函数的渐近增长
查看>>
动态参数
查看>>
FirewallD常用命令及设置
查看>>
Slight difference between C++ and C
查看>>
c++类的嵌套(1)
查看>>
Android SqlLite数据库的创建、增、删、改、查、使用事务
查看>>
phpStorm无法使用svn1.8的解决办法
查看>>
Talk is cheap,show me the code
查看>>