Task

Luogu
IDLGP10464
Time1000ms
Memory512MB
DifficultyP3
贪心
Today the company has $m$ tasks to complete. The $i-$th 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_i$ cannot complete this task. If the company completes this task, they will get $(500\times x_i+2\times y_i)$ 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. ## Input 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 \leq N \leq 100000, 1\leq M\leq 100000)$. The following $N$ lines each contains two integers $x_i(0<x_i<1440),y_i(0\leq yi\leq 100)$. $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(0<x_i<1440),y_i(0\leq y_i\leq 100)$. $x_i$ is the time we need to complete the task. $y_i$ is the level of the task. ## Output 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. [samples]
Samples
Input #1
1 2 
100 3 
100 2 
100 1
Output #1
1 50004
API Response (JSON)
{
  "problem": {
    "name": "Task",
    "description": {
      "content": "Today the company has $m$ tasks to complete. The $i-$th 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_i$ ca",
      "description_type": "Markdown"
    },
    "platform": "Luogu",
    "limit": {
      "time_limit": 1000,
      "memory_limit": 524288
    },
    "difficulty": {
      "LuoguStyle": "P3"
    },
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "LGP10464"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Today the company has $m$ tasks to complete. The $i-$th 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_i$ ca...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments