A car factory has two assembly lines, each with n stations. A station is denoted by Si,j where i is either 1 or 2 and indicates the assembly line the station is on, and j indicates the number of the station. The time taken per station is denoted by ai,j. Each station is dedicated to some sort of work like engine fitting, body fitting, painting and so on. So, a car chassis must pass through each of the n stations in order before exiting the factory. The parallel stations of the two assembly lines perform the same task. After it passes through station Si,j, it will continue to station Si,j+1 unless it decides to transfer to the other line. Continuing on the same line incurs no extra cost, but transferring from line i at station j – 1 to station j on the other line takes time ti,j. Each assembly line takes an entry time ei and exit time xi which may be different for the two lines. Give an algorithm for computing the minimum time it will take to build a car chassis.
The below figure presents the problem in a clear picture:
The following information can be extracted from the problem statement to make it simpler:
Breaking the problem into smaller sub-problems:
We can easily find the ith factorial if (i-1)th factorial is known. Can we apply the similar funda here?
If the minimum time taken by the chassis to leave station Si, j-1 is known, the minimum time taken to leave station Si, j can be calculated quickly by combining ai, j and ti, j.
T1(j) indicates the minimum time taken by the car chassis to leave station j on assembly line 1.
T2(j) indicates the minimum time taken by the car chassis to leave station j on assembly line 2.
Base cases:
The entry time ei comes into picture only when the car chassis enters the car factory.
Time taken to leave first station in line 1 is given by:
T1(1) = Entry time in Line 1 + Time spent in station S1,1
T1(1) = e1 + a1,1
Similarly, time taken to leave first station in line 2 is given by:
T2(1) = e2 + a2,1
Recursive Relations:
If we look at the problem statement, it quickly boils down to the below observations:
The car chassis at station S1,j can come either from station S1, j-1 or station S2, j-1.
Case #1: Its previous station is S1, j-1
The minimum time to leave station S1,j is given by:
T1(j) = Minimum time taken to leave station S1, j-1 + Time spent in station S1, j
T1(j) = T1(j-1) + a1, j
Case #2: Its previous station is S2, j-1
The minimum time to leave station S1, j is given by:
T1(j) = Minimum time taken to leave station S2, j-1 + Extra cost incurred to change the assembly line + Time spent in station S1, j
T1(j) = T2(j-1) + t2, j + a1, j
The minimum time T1(j) is given by the minimum of the two obtained in cases #1 and #2.
T1(j) = min((T1(j-1) + a1, j), (T2(j-1) + t2, j + a1, j))
Similarly the minimum time to reach station S2, j is given by:
T2(j) = min((T2(j-1) + a2, j), (T1(j-1) + t1, j + a2, j))
The total minimum time taken by the car chassis to come out of the factory is given by:
Tmin = min(Time taken to leave station Si,n + Time taken to exit the car factory)
Tmin = min(T1(n) + x1, T2(n) + x2)
Why dynamic programming?
The above recursion exhibits overlapping sub-problems. There are two ways to reach station S1, j:
So, to find the minimum time to leave station S1, j the minimum time to leave the previous two stations must be calculated(as explained in above recursion).
Similarly, there are two ways to reach station S2, j:
Please note that the minimum times to leave stations S1, j-1 and S2, j-1 have already been calculated.
So, we need two tables to store the partial results calculated for each station in an assembly line. The table will be filled in bottom-up fashion.
Note:
In this post, the word “leave” has been used in place of “reach” to avoid the confusion. Since the car chassis must spend a fixed time in each station, the word leave suits better.
流水线调度问题,DP的经典例子。到达某一装配点的货物既可以由本流水线过来,也可以由另一支流水线过来,取决于哪一个更合算。
以下例子答案:
Output:
35
The bold line shows the path covered by the car chassis for given input values.
package DP; public class AssemblyLineScheduling { public static void main(String[] args) { int[][] a = {{4, 5, 3, 2}, {2, 10, 1, 4}}; int[][] t = {{0, 7, 4, 5}, {0, 9, 2, 8}}; int[] e = {10, 12}; int[] x = {18, 7}; System.out.println(carAssemblyDP(a, t, e, x)); System.out.println(carAssembly(a, t, e, x)); } public static int carAssembly(int[][] a, int[][] t, int[] e, int[] x){ int n = a[0].length-1; return Math.min(carAssemblyRec(a,t, e, x, n, 0) + x[0], carAssemblyRec(a,t, e, x, n, 1) + x[1]); } public static int carAssemblyRec(int[][] a, int[][] t, int[] e, int[] x, int n, int line){ if(n == 0){ return e[line] + a[line][0]; } int T0 = Integer.MAX_VALUE; int T1 = Integer.MAX_VALUE; if(line == 0){ // 以下只适用于line0 T0 = Math.min(carAssemblyRec(a, t, e, x, n-1, 0) + a[0][n], // 从本线路过来的 carAssemblyRec(a, t, e, x, n-1, 1) + t[1][n] + a[0][n]); // 从另一条线路过来的 }else if(line == 1){ // 以下只适用于line1 T1 = Math.min(carAssemblyRec(a, t, e, x, n-1, 1) + a[1][n], // 从本线路过来的 carAssemblyRec(a, t, e, x, n-1, 0) + t[0][n] + a[1][n]); // 从另一条线路过来的 } return Math.min(T0, T1); } public static int carAssemblyDP(int[][] a, int[][] t, int[] e, int[] x){ int n = a[0].length; int[] T1 = new int[n]; int[] T2 = new int[n]; T1[0] = e[0] + a[0][0]; T2[0] = e[1] + a[1][0]; for(int i=1; i<n; i++){ T1[i] = Math.min(T1[i-1]+a[0][i], T2[i-1]+t[1][i]+a[0][i]); T2[i] = Math.min(T2[i-1]+a[1][i], T1[i-1]+t[0][i]+a[1][i]); } return Math.min(T1[n-1]+x[0], T2[n-1]+x[1]); } }
吐槽一下这题的递归,一开始我是这样写的:
public static int carAssemblyRec(int[][] a, int[][] t, int[] e, int[] x, int n, int line){ if(n == 0){ return e[line] + a[line][0]; } int T0 = Math.min(carAssemblyRec(a, t, e, x, n-1, 0) + a[0][n], carAssemblyRec(a, t, e, x, n-1, 1) + t[1][n] + a[0][n]); int T1 = Math.min(carAssemblyRec(a, t, e, x, n-1, 1) + a[1][n], carAssemblyRec(a, t, e, x, n-1, 0) + t[0][n] + a[1][n]); return Math.min(T0, T1); }
正确写法应该是:
public static int carAssemblyRec(int[][] a, int[][] t, int[] e, int[] x, int n, int line){ if(n == 0){ return e[line] + a[line][0]; } int T0 = Integer.MAX_VALUE; int T1 = Integer.MAX_VALUE; if(line == 0){ // 以下只适用于line0 T0 = Math.min(carAssemblyRec(a, t, e, x, n-1, 0) + a[0][n], // 从本线路过来的 carAssemblyRec(a, t, e, x, n-1, 1) + t[1][n] + a[0][n]); // 从另一条线路过来的 }else if(line == 1){ // 以下只适用于line1 T1 = Math.min(carAssemblyRec(a, t, e, x, n-1, 1) + a[1][n], // 从本线路过来的 carAssemblyRec(a, t, e, x, n-1, 0) + t[0][n] + a[1][n]); // 从另一条线路过来的 } return Math.min(T0, T1); }
http://www.geeksforgeeks.org/dynamic-programming-set-34-assembly-line-scheduling/