Path With Minimum Effort

 

1631. Path With Minimum Effort You are a hiker preparing for an upcoming hike. You are given heights, a 2D array of size rows x columns, where heights[row][col] represents the height of cell (row, col). You are situated in the top-left cell, (0, 0), and you hope to travel to the bottom-right cell, (rows-1, columns-1) (i.e., 0-indexed). You can move up, down, left, or right, and you wish to find a route that requires the minimum effort.

A route’s effort is the maximum absolute difference in heights between two consecutive cells of the route.

Return the minimum effort required to travel from the top-left cell to the bottom-right cell.

Solution - Dijkstra

  1. This problem is to find the shortest path with minimum distance. Where distance is defined as maximum absolute difference in heights between two consecutive cells of the path.
    def minimumEffortPath(self, heights):
     m, n = len(heights), len(heights[0])
     dist = [[float('inf')] * n for _ in range(m)]
     minHeap = []
     minHeap.append((0, 0, 0))  # distance, row, col
     DIR = [0, 1, 0, -1, 0]
     while minHeap:
         d, r, c = heappop(minHeap)
         if r == m - 1 and c == n - 1:
             return d  # Reach to bottom right
         for i in range(4):
             nr, nc = r + DIR[i], c + DIR[i + 1]
             if 0 <= nr < m and 0 <= nc < n:
                 newDist = max(d, abs(heights[nr][nc] - heights[r][c]))
                 if dist[nr][nc] > newDist:
                     dist[nr][nc] = newDist
                     heappush(minHeap, (dist[nr][nc], nr, nc))