Skip to content

Instantly share code, notes, and snippets.

@thmain
Last active May 27, 2018 05:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thmain/21059e4d21dbf6cb0f66eb80d873127e to your computer and use it in GitHub Desktop.
Save thmain/21059e4d21dbf6cb0f66eb80d873127e to your computer and use it in GitHub Desktop.
public class MinCostPath {
public static int find(int[][] A) {
int[][] solution = new int[A.length][A.length];
solution[0][0] = A[0][0];
// fill the first row
for (int i = 1; i < A.length; i++) {
solution[0][i] = A[0][i] + solution[0][i - 1];
}
// fill the first column
for (int i = 1; i < A.length; i++) {
solution[i][0] = A[i][0] + solution[i - 1][0];
}
// path will be either from top or left, choose which ever is minimum
for (int i = 1; i < A.length; i++) {
for (int j = 1; j < A.length; j++) {
solution[i][j] = A[i][j]
+ Math.min(solution[i - 1][j], solution[i][j - 1]);
}
}
return solution[A.length - 1][A.length - 1];
}
public static void main(String[] args) {
int[][] A = { { 1, 7, 9, 2 }, { 8, 6, 3, 2 }, { 1, 6, 7, 8 },
{ 2, 9, 8, 2 } };
System.out.println("Minimum Cost Path " + find(A));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment