#Lutece0450. Scheduling Problem
Scheduling Problem
Migrated from Lutece 450 Scheduling Problem
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
Recently,wangkun is focused on the scheduling,proposing a method which can meet the scheduling demand.However,the principle is a little sophisticated.He wants to know how much time it takes to complete all the tasks.So,you are asked for help.
Followings are the principles:
First there exist tasks,numbered from to .Each task i is assigned a priority . Additionally,each task is divided into subtasks. time is needed to spend on each subtask . Now, machines are available. Every machine can only take a single subtask a time.
At the beginning,all the machines are available.we assume that,if a machine is available,it can take a subtask.Pay attention that,every time among the uncompleted subtasks,the subtask with the highest priority is taken out.For two subtasks with equal priority,we rank them according to their rank number.For instance,there is a subtask in task and a subtask in task ,and task and task are having the same priority.We define that subtask is prior to subtask .Besides,for two subtasks in the same task,such as subtask in task and subtask in task ,subtask is prior to subtask .
Input
First line is a integer ,representing the number of test cases
In each test cases,first line contains two integers (number of tasks ),M(number of machines )
Following are tasks.
In each task,first line contains two integers (number of subtasks in the task ), (the priority of the task )
Following lines indicate the executing time for each subtask.
Output
One line,the time needed to complete all the tasks.
Samples
1
2 3
2 2
1
2
2 5
3
4
4
Resources
5th BUPT Programming Contest Final