Task

 2 Sec 64 MB |  显示标签
09
通过提交

题目描述

Today the company has m tasks to complete. The ith task need xi minutes to complete. Meanwhile, this task has a difficulty level yi. The machine whose level below this task’s level yi cannot complete this task. If the company completes this task, they will get (500*xi+2*yi) dollars.
The company has n machines. Each machine has a maximum working time and a level. If the time for the task is more than the maximum working time of the machine, the machine can not complete this task. Each machine can only complete a task one day. Each task can only be completed by one machine.
The company hopes to maximize the number of the tasks which they can complete today. If there are multiple solutions, they hopes to make the money maximum.

输入格式

The input contains several test cases.
The first line contains two integers N and M. N is the number of the machines.M is the number of tasks(1 < =N <= 100000,1<=M<=100000).
The following N lines each contains two integers xi(0 The following M lines each contains two integers xi(0

输出格式

For each test case, output two integers, the maximum number of the tasks which the company can complete today and the money they will get.

样例输入 #1

1 2
100 3
100 2
100 1

样例输出 #1

1 50004
 上传者
coach
 创建时间
2014-07-27 15:23
 修改时间
2017-10-02 20:34