#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 for job being processed in machines . One restrain is that the order for each job processed in machines is fixed, which means that for every job , there is a process oder , job must processed in machine first then . 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. Each follow three components. First is a matrix, the value in the _th row and _th column is Second is a matrix, the jobs process order, the value in the _th row and _th column is . Third is a matrix the machines process order, the value in the _th row and _th column is is the jobs process order in machine , which means machine process first, then . (jobs and machines are indexed from ) 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
厦门大学第四届程序设计竞赛 现场决赛