티스토리 뷰
문제 설명은 아래와 같다.
: 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.
주어진 예시는 아래와 같다.
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.
Input: costs = [[1,3],[2,4]]
Output: 5
Dynamic Programming을 사용해 풀었다. 인접한 두 집은 같은 색으로 칠하면 안되기 때문에 각 색깔별로 색을 칠하는 경우의 최소 비용(cost)을 계산해 메모이제이션 테이블(Memoizaition Table)에 계속 저장해 나가는 방식을 활용했다.
class Solution:
def minCostII(self, costs: List[List[int]]) -> int:
ret = 0
n = len(costs)
k = len(costs[0])
dp = [[0 for j in range(k)] for i in range(n)]
for i in range(k):
dp[0][i] = costs[0][i]
for i in range(1, n):
for j in range(k):
c = math.inf
for l in range(k):
if l == j:
continue
if c > dp[i-1][l]:
c = dp[i-1][l]
cI = l
dp[i][j] = costs[i][j] + c
return min(dp[n-1])
반응형
'기술(Tech, IT) > 리트코드(LeetCode)' 카테고리의 다른 글
[LeetCode] 266. Palindrome Permutation (0) | 2023.02.13 |
---|---|
[LeetCode] 158. Read N Characters Given read4 II - Call Multiple Times (0) | 2023.02.12 |
[LeetCode] 157. Read N Characters Given Read4 (0) | 2023.02.10 |
[LeetCode] 359. Logger Rate Limiter (0) | 2022.09.27 |
[LeetCode] 13. 3Sum (0) | 2022.09.12 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 이코노미스트 에스프레소
- defaultdict
- I2C
- 안드로이드
- tf-idf
- 이코노미스트
- Hash Map
- leetcode
- 오블완
- machine learning
- socket programming
- The Economist Espresso
- 파이썬
- Android
- 티스토리챌린지
- vertex shader
- join
- C++
- The Economist
- Computer Graphics
- ml
- 리트코드
- DICTIONARY
- java
- 소켓 프로그래밍
- 딕셔너리
- 머신 러닝
- 투 포인터
- Python
- min heap
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함
반응형