You are given a 2D grid represented as an m x n matrix where each cell contains either a 0 (open space) or a 1 (obstacle). In addition, you are provided with:
You can move in the four cardinal directions: up, down, left, or right. Each move to an adjacent cell costs 1 unit. However, when you change direction compared to your previous move, a penalty of P is added to that move. The very first move does not incur any penalty regardless of its direction.
Rules:
Task:
Write a function or method that takes the following inputs:
and returns the minimum total cost required to travel from the start to the goal following the above rules. If the goal is unreachable, your function should return -1.
Constraints:
Example:
Consider the grid:
[[0, 0, 0],
[1, 1, 0],
[0, 0, 0]]
Start: (0, 0)
Goal: (2, 2)
Penalty P: 2
One possible path is:
(0,0) → (0,1) → (0,2) → (1,2) → (2,2)
Total cost = 1 + 1 + (1+2) + 1 = 6
Your goal is to design an algorithm that finds the minimum cost path from the start to the goal according to these rules.