#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 NN tasks,numbered from 11 to NN.Each task i is assigned a priority PiP_i. Additionally,each task is divided into SS subtasks. TjT_j time is needed to spend on each subtask jj. Now, MM machines are available. Every machine can only take a single subtask a time.

At the beginning,all the MM 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 33 in task 11 and a subtask 22 in task 22,and task 11 and task 22 are having the same priority.We define that subtask 33 is prior to subtask 22.Besides,for two subtasks in the same task,such as subtask 22 in task 11 and subtask 33 in task 11,subtask 22 is prior to subtask 33.

Input

First line is a integer TT,representing the number of test cases

In each test cases,first line contains two integers NN(number of tasks 0<N1000 < N \leq 100),M(number of machines 0<M1000 < M \leq 100)

Following are NN tasks.

In each task,first line contains two integers SS(number of subtasks in the task 0<S1000 < S \leq 100), PP(the priority of the task 0p1000 \leq p \leq 100)

Following SS 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