问题 AK: Task

内存限制:128 MB 时间限制:1.000 S
评测方式:文本比较 命题人:
提交:30 解决:16

题目描述

Today the company has m tasks to complete. The ith task need xix_ixi minutes to complete. Meanwhile, this task has a difficulty level yiy_iyi. The machine whose level below this task's level yiy_iyicannot 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≤xi≤1440),yi(0≤yi≤100).xi is the maximum time the machine can work.yi is the level of the machine.
The following M lines each contains two integers xix_ixi(0≤xi≤1440),yi(0yi100).xi is the time we need to complete the task.yi is the level of the task.

输出

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 2
100 3
100 2
100 1

样例输出 复制

1 50004

来源/分类