Advertisement
Nonplussed

Leetcode #3429: Paint House IV (Readable code solution)

Feb 1st, 2025
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.63 KB | Source Code | 0 0
  1. class Solution:
  2.     def minCost(self, numHouses: int, costsToPaint: List[List[int]]) -> int:
  3.         middleIndex = (numHouses / 2)
  4.        
  5.         calculations = [[] for i in range(numHouses)]
  6.         for i in range(numHouses):
  7.             for j in range(4):
  8.                 calculations[i].append([])
  9.                 for k in range(4):
  10.                     calculations[i][j].append(-1)
  11.  
  12.         def calculate(i, previousHouseColor, previousMirroredColor):
  13.             if i >= middleIndex: return 0
  14.  
  15.             calculatedAlready = (calculations[i][previousHouseColor][previousMirroredColor] != -1)
  16.             if calculatedAlready: return calculations[i][previousHouseColor][previousMirroredColor]
  17.  
  18.             minResult = math.inf
  19.  
  20.             # color1 => current (i-th) house
  21.             for color1 in range(3):
  22.                 if color1 == previousHouseColor: continue
  23.  
  24.                 # color2 => mirrored house
  25.                 for color2 in range(3):
  26.                     if color2 == previousMirroredColor or color2 == color1: continue
  27.  
  28.                     costToPaint_ith = costsToPaint[i][color1]
  29.  
  30.                     mirroredIndex = (numHouses - 1 - i)
  31.                     costToPaint_mirrored = costsToPaint[mirroredIndex][color2]
  32.  
  33.                     costToPaint_next = calculate(i + 1, color1, color2)
  34.  
  35.                     resultHere = (costToPaint_ith + costToPaint_mirrored + costToPaint_next)
  36.                     minResult = min(minResult, resultHere)
  37.  
  38.             calculations[i][previousHouseColor][previousMirroredColor] = minResult
  39.             return minResult
  40.  
  41.         return calculate(0, 3, 3)
  42.        
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement