Help : Min cost for path blocking

Revision en4, by IaMaNanBord, 2021-11-10 09:02:34

So, recently I came across a problem related to finding min cost. The problem statement is as follows -

You are given a grid with n rows and m columns and each cell is either empty (.) or blocked (#). Now you can block only one cell in the grid such that there is no path left from $$$(1,1)$$$ to $$$(n,m)$$$. A path can contain only right or (and) down moves.

Cost for blocking any cell $$$(i,j)$$$ is given as $$$cost(i,j)$$$. You need to find the minimum cost for achieving the task.

The expected solution should take $$$O(n * m)$$$ time.

Example
Note

Please provide some hints for solving this problem.

Tags dp, graphs

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en4 English IaMaNanBord 2021-11-10 09:02:34 136 Tiny change: 'spoiler>\nNote : \n\n\nPlease' -> 'spoiler>\n\nPlease'
en3 English IaMaNanBord 2021-11-10 08:36:42 2
en2 English IaMaNanBord 2021-11-10 08:34:07 46 Tiny change: ' choice.\n\n\n</spoile' -> ' choice.\n</spoile' (published)
en1 English IaMaNanBord 2021-11-10 08:30:18 1242 Initial revision (saved to drafts)