Tack
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 32 M,其他语言64 M
64bit IO Format: %lld

题目描述

Today the company has m tasks to complete. The ith task need x_i minutes to complete. Meanwhile, this task has a difficulty level y_i. The machine whose level below this task's level y_icannot complete this task. If the company completes this task, they will get 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.
The following N lines each contains two integers x_i,y_i.x_i is the maximum time the machine can work.y_i is the level of the machine.
The following M lines each contains two integers x_i,y_i.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

输入

复制
1 2
100 3
100 2
100 1

输出

复制
1 50004