Find minimum sum path from top-left to bottom-right moving only right or down.
2D DP
dp[i][j] = min cost to reach (i,j) from (0,0) moving only right/down.