JavaAlgorithms/DynamicProgramming/RodCutting.java

30 lines
770 B
Java
Raw Permalink Normal View History

package DynamicProgramming;
2019-02-23 21:12:08 +08:00
/**
2020-10-24 18:23:28 +08:00
* A DynamicProgramming solution for Rod cutting problem Returns the best obtainable price for a rod
* of length n and price[] as prices of different pieces
2019-02-23 21:12:08 +08:00
*/
public class RodCutting {
2020-10-24 18:23:28 +08:00
private static int cutRod(int[] price, int n) {
int val[] = new int[n + 1];
val[0] = 0;
2019-02-23 21:12:08 +08:00
2020-10-24 18:23:28 +08:00
for (int i = 1; i <= n; i++) {
int max_val = Integer.MIN_VALUE;
for (int j = 0; j < i; j++) max_val = Math.max(max_val, price[j] + val[i - j - 1]);
2019-02-23 21:12:08 +08:00
2020-10-24 18:23:28 +08:00
val[i] = max_val;
2019-02-23 21:12:08 +08:00
}
2020-10-24 18:23:28 +08:00
return val[n];
}
// main function to test
public static void main(String args[]) {
int[] arr = new int[] {2, 5, 13, 19, 20};
2021-03-14 09:41:12 +08:00
int result = cutRod(arr, arr.length);
2020-10-24 18:23:28 +08:00
System.out.println("Maximum Obtainable Value is " + result);
}
}