#Lutece0270. Schedule

Schedule

Migrated from Lutece 270 Schedule

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Resently, loneknight is doing research on job shop schedule problem(JSP for short). Let us take a look at JSP, there are n jobs and m machines, and every job must be processed in every machines, with a process time t[i,j]t[i,j] for job ii being processed in machines jj. One restrain is that the order for each job processed in machines is fixed, which means that for every job ii, there is a process oder (a[i,1],a[i,2],...,a[i,m])(a[i,1], a[i,2], ..., a[i,m]), job ii must processed in machine a[i,1]a[i,1] first then a[i,2],,a[i,m]a[i,2], \cdots, a[i,m]. Another restrain is every machine can process amost one job at any time, and every job can be process in amost one machine at any time. The problem is to find a schedule fit this restrains, that make the end time for all jobs, namely the makespan is minimum. Because of the fact that JSP is a NP-Complete problem, loneknight try using simulated anealing and gene algorithm to construct a heuristics algorithm for it. In developing such algorithm for JSP, he confront with a problem that if a schedule is already given, what is the makespan of this schedule, now this your task to solve this problem.

Input

There are mutiple test cases in the input. The beginning of each case is n, the number of jobs, m, the number of machines. (0<n,m300)(0 < n,m \leq 300) Each follow three components. First is a n×mn \times m matrix, the value in the ii_th row and jj_th column is t[i,j].(0t[i,j]<100)t[i,j]. (0 \leq t[i,j] < 100) Second is a n×mn \times m matrix, the jobs process order, the value in the ii_th row and jj_th column is a[i,j]a[i,j]. Third is a m×nm \times n matrix the machines process order, the value in the ii_th row and jj_th column is b[i,j],(b[i,1],b[i,2],...,b[i,n])b[i,j], (b[i,1],b[i,2], ..., b[i,n]) is the jobs process order in machine ii, which means machine ii process b[i,1]b[i,1] first, then b[i,2],,b[i,n]b[i,2], \cdots, b[i,n]. (jobs and machines are indexed from 11) The input end with EOF.

Output

For each test case, you should output a single integer, which is the makespan for that schedule in a single line.

Samples

3 3
83 86 77 
15 93 35 
86 92 49 

3 1 2 
3 1 2 
1 3 2 

1 2 3 
1 3 2 
1 2 3
495

Resources

厦门大学第四届程序设计竞赛 现场决赛