Problem A
Bank Queue
However, there are too many people and only one counter is open which can serve one person per minute. Greedy as Oliver is, he would like to select some people in the queue, so that the total amount of cash stored by these people is as big as possible and that money then can work for the bank overnight.
There is a problem, though. Some people don’t have the time to wait until the bank closes because they have to run somewhere else, so they have to be served before a certain time, after which they just leave. Oliver also turned off the infrared door sensor outside the bank, so that no more people can enter, because it’s already too crowded in the hall.
Task
Help Oliver calculate how much cash he can get from the people currently standing in the queue before the bank closes by serving at most one person per minute.
Input
The first line of input contains two integers $N$ $(1\leq N\leq 10\, 000)$ and $T$ $(1\le T \le 47)$, the number of people in the queue and the time in minutes until Oliver closes the bank. Then follow $N$ lines, each with 2 integers $c_ i$ and $t_ i$, denoting the amount of cash in Swedish crowns person $i$ has and the time in minutes from now after which person $i$ leaves if not served. Note that it takes one minute to serve a person and you must begin serving a person at time $t_ i$ at the latest. You can assume that $1\le c_ i \le 100\, 000$ and $0 \le t_ i < T$.
Output
Output one line with the maximum amount of money you can get from the people in the queue before the bank closes.
Sample Input 1 | Sample Output 1 |
---|---|
4 4 1000 1 2000 2 500 2 1200 0 |
4200 |
Sample Input 2 | Sample Output 2 |
---|---|
3 4 1000 0 2000 1 500 1 |
3000 |