JavaAlgorithms/DynamicProgramming/RodCutting.java

34 lines
882 B
Java
Raw Normal View History

package DynamicProgramming;
2019-02-23 21:12:08 +08:00
/**
* A DynamicProgramming solution for Rod cutting problem
2019-02-23 21:12:08 +08:00
* 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 {
2019-02-23 21:12:08 +08:00
private static int cutRod(int[] price, int n) {
int val[] = new int[n + 1];
val[0] = 0;
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]);
val[i] = max_val;
}
2019-02-23 21:12:08 +08:00
return val[n];
}
2019-02-23 21:12:08 +08:00
// main function to test
public static void main(String args[]) {
int[] arr = new int[]{2, 5, 13, 19, 20};
int size = arr.length;
2019-10-12 12:44:25 +08:00
int result = cutRod(arr,size);
2019-02-23 21:12:08 +08:00
System.out.println("Maximum Obtainable Value is " +
2019-10-12 12:44:25 +08:00
result);
2019-02-23 21:12:08 +08:00
}
}