forked from sachuverma/DataStructures-Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPaint House II.cpp
59 lines (45 loc) · 1.67 KB
/
Paint House II.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
Paint House II
=============
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 an n x k cost matrix costs.
For example, costs[0][0] is the cost of painting house 0 with color 0; costs[1][2] is the cost of painting house 1 with color 2, and so on...
Return the minimum cost to paint all houses.
Example 1:
Input: costs = [[1,5,3],[2,9,4]]
Output: 5
Explanation:
Paint house 0 into color 0, paint house 1 into color 2. Minimum cost: 1 + 4 = 5;
Or paint house 0 into color 2, paint house 1 into color 0. Minimum cost: 3 + 2 = 5.
Example 2:
Input: costs = [[1,3],[2,4]]
Output: 5
Constraints:
costs.length == n
costs[i].length == k
1 <= n <= 100
2 <= k <= 20
1 <= costs[i][j] <= 20
Follow up: Could you solve it in O(nk) runtime?
*/
class Solution {
public:
int memo[101][22];
int dfs(vector<vector<int>>& costs, int i, int prev_color) {
if(i == costs.size()) return 0;
if(memo[i][prev_color+1] != -1) return memo[i][prev_color+1];
int ans = INT_MAX;
for(int j=0; j<costs[i].size(); ++j) {
if(prev_color != j) {
int next = dfs(costs, i+1, j);
if(next != INT_MAX)
ans = min(ans, costs[i][j] + next);
}
}
return memo[i][prev_color+1] = ans;
}
int minCostII(vector<vector<int>>& costs) {
memset(memo, -1, sizeof memo);
return dfs(costs, 0, -1);
}
};