Problem B
Distributing Seats

A particular flights has
Of course, passengers are usually okay with sitting
somewhere else than their assigned seat, but they may still
want to be somewhat close to their original seat. Perhaps they
want to be able to speak to their friends, or sit close to
their overhead luggage. More specifically, passenger
Due to budget reasons, you decided to travel on a Divided flight. As expected, all the passengers assigned to an overbooked seat started to fight with each other, moving around in complex ways and causing a long delay. You proposed a fair resolution: you will construct a seat assignment which takes into account how far the passengers accepts to sit from their assigned seats so that as many passengers as possible get a seat. Now, all that remains is to actually find this assignment.
Input
The input consists of:
-
one line with the integers
, and ( ), the number of passengers, rows and columns in the flight. -
lines with the integers and ( , , ). The ’th line has the assigned row and column , and maximum distance of the ’th passenger. The maximum distance is given in rows.
Output
Output the maximum number of passengers that can be assigned a seat in an optimal assignment.
Sample Input 1 | Sample Output 1 |
---|---|
3 2 1 1 1 0 1 1 1 2 1 0 |
2 |
Sample Input 2 | Sample Output 2 |
---|---|
3 3 1 1 1 0 1 1 1 1 1 2 |
3 |
Sample Input 3 | Sample Output 3 |
---|---|
5 2 2 1 1 0 1 2 0 1 2 0 1 1 1 2 1 1 |
4 |