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?

解题思路:

这道题是Paint House的拓展,这题的解法的思路还是用DP,那道题只让用红绿蓝三种颜色来粉刷房子,而这道题让我们用k种颜色,这道题不能用之前那题的Math.min方法了,会TLE。只要把最小和次小的都记录下来就行了,用preMin和PreSec来记录之前房子的最小和第二小的花费的颜色,如果当前房子颜色和min1相同,那么我们用min2对应的值计算,反之我们用min1对应的值,这种解法实际上也包含了求次小值的方法。

State: dp[i][j]

Function: dp[i][j] = costs[i][j] + preMin or costs[i][j] + preSec

Initialize: preMin = 0 , preSec = 0

Return: dp[n][preMin]

Java: Time: O(n), Space: O(1)

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;
}
}

  

相似题目:

256. Paint House

最新文章

  1. 不能在DropDownList 中选择多个项
  2. Select Top在七种数据库中的使用方法(包含mysql)
  3. Linux线程学习(一)
  4. 对象复制问题 &amp;&amp; lvalue-rvalue &amp;&amp; 引用
  5. android学习笔记六——Spinner
  6. EhCache 分布式缓存/缓存集群
  7. 两层Fragment嵌套,外层Fragment切换时内层Fragment不显示内容
  8. linux 内核代码精简
  9. jquery uploadifive使用
  10. DirectShow音频采集声音不连续问题分析与解决办法经验总结
  11. final类与final方法
  12. iptables实战案例详解-技术流ken
  13. JavaScript如何工作:内存管理+如何处理4个常见的内存泄漏
  14. 【转】JS中,中国标准时间转化为yyyy-MM-dd
  15. HTML5 自定义属性
  16. 解决:HTTP 错误 404.2 - Not Found. 由于 Web 服务器上的“ISAPI 和 CGI 限制”列表设置,无法提供您请求的页面
  17. 【UNIX环境编程、操作系统】孤儿进程和僵尸进程
  18. 流媒体协议之RTSP客户端的实现20171014
  19. 2017ACM暑期多校联合训练 - Team 4 1003 HDU 6069 Counting Divisors (区间素数筛选+因子数)
  20. linux系统可执行文件添加环境变量使其跨终端和目录执行

热门文章

  1. steam相关插件
  2. Jquery无须浏览实现直接下载文件
  3. template_constructor_function
  4. LINUX部署JAVA项目
  5. lxml_time_代理
  6. Xamarin.Forms 开发热加载利器 HotReload 推荐
  7. Linux 系统管理——账号管理
  8. C Primer Plus--C预处理器和C库(1)
  9. hdfs、yarn集成kerberos
  10. arts lettcode 题目