QOJ.ac

QOJ

Time Limit: 1 s Memory Limit: 32 MB Total points: 100

#322. Programming Contest

Statistics

Bartie and his friends compete in the Team Programming Contest. There are $n$ contestants on each team, and each team has access to $n$ computers. The contest lasts $t$ minutes, during which the contestants are to solve $m$ programming problems. Furthermore, penalties are imposed on the teams: solving a problem $s$ minutes since the beginning of the contest amounts to $s$ penal points. The team that solved the most problems wins the contest, with ties broken in favour of the team with smaller penalty.

On the contest day Bartie quickly glances over the problem statements and distributes them among his teammates. He knows his team so well that he can exactly assess who is able to solve which problem. Solving any problem takes any contestant that is able to solve it exactly $r$ minutes of using the computer.

Bartie's team did not fare well in this year's contest. Bartie is obsessed with the thought that it might be his fault, due to wrong decisions regarding the distribution of problems. He asks you to write a program that, given what Bartie knew at the beginning of the contest, determines the best possible result of Bytie's team, together with the assignment of problems to team members that attains the result.

Input Format

Five integers $n$, $m$, $r$, $t$, and $k$ ($1 ≤ n,m ≤ 500$, $1 ≤ r,t ≤ 1\,000\,000$) are given in the first line of the standard input, separated by single spaces. These denote, respectively: the number of contestants on a team, the number of problems, the time it takes a contestant to solve a problem, the duration of the contest, and the number of contestant-problem pairs given on the input. Each of the following $k$ lines holds two integers $a$ and $b$ ($1 ≤ a ≤ n$, $1 ≤ b ≤ m$), separated by a single space, denoting that the contestant a is able to solve the problem $b$. Each such pair appears at most once in the input.

In tests worth at least 30% of the points it additionally holds that $n,m ≤ 100$.

Output Format

In the first line of the standard output the best possible result of Bytie's team should be printed as two numbers separated by a single space: the number of solved problems $z$ and the total penal points. An exemplary assignment of problems that attains this result should be given in the following $z$ lines. Each of those should hold three integers $a$, $b$ and $c$ ($1 ≤ a ≤ n$, $1 ≤ b ≤ m$, $0 ≤ c ≤ t-r$), separated by single spaces, signifying that the contestant $a$ should start solving the problem $b$ at time $c$ (the contest starts at time 0). No contestant should be assigned a problem that they cannot solve. If more that one optimal assignment exists, your program can output any of them.

Sample Data

Sample Input

2 4 3 15 4
1 1
2 3
1 4
1 3

Sample Output

3 12
1 4 0
2 3 0
1 1 3

Discussions

About Discussions

The discussion section is only for posting: Editorials, General Discussions (problem-solving strategies, alternative approaches), and Off-topic conversations.

This is NOT for reporting issues! If you want to report bugs or errors, please use the Issues section below.

Open Discussions 0
No discussions in this category.

Issues

About Issues

If you find any issues with the problem (statement, scoring, time/memory limits, test cases, etc.), you may submit an issue here. A problem moderator will review your issue.

Guidelines:

  1. This is not a place to publish discussions, editorials, or requests to debug your code. Issues are only visible to you and problem moderators.
  2. Do not submit duplicated issues. Submitting multiple issues may cause your account to be banned.
  3. Issues must be filed in English or Chinese only.
Active Issues 0
No issues in this category.
Closed/Resolved Issues 0
No issues in this category.