Problem from Taiwan Regional Contest

Revision en3, by tmwilliamlin168, 2017-12-02 20:15:07

I've been thinking for one month and I still don't know how to solve this problem:

There is a park of size (A<=100)x(B<=100) (consider it as a grid), with (1, 1) as the top-left corner. There are C<=1000 trees on the park, all of which have distinct locations. You want to place as many VIP lounges on the park as possible, such that every VIP lounge is adjacent to a tree on its top, bottom, left, or right. But because of privacy issues, a VIP lounge cannot be adjacent to another VIP lounge (including diagonally). Note that you cannot place a VIP lounge on a tree.

For example, consider the following park of size 9x7:

The "T"s represent the trees, the grey shaded areas represent possible locations for VIP lounges. If there were to be a VIP lounge on where the "V" is located, then the "x"s represent the locations where there cannot be VIP lounges.

Time limit: 1s

Samples

My thoughts:

Finding the maximum independent set of a bipartite graph can be done in polynomial time. Create a graph in which the possible VIP lounge placements are nodes and there are edges between 2 nodes if the 2 VIP lounges are adjacent. The maximum independent set of this graph is the answer. Notice that this graph is quadripartite (all combinations of x, y mod 2). Maybe there is also a way to find the maximum independent set of a quadripartite graph efficiently.

Or maybe I'm thinking too much and there is a greedy solution.

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en3 English tmwilliamlin168 2017-12-02 20:15:07 19 Tiny change: 'unges.\n\n<spoil' -> 'unges.\n\nTime limit: 1s\n\n<spoil'
en2 English tmwilliamlin168 2017-12-02 10:30:09 136 (published)
en1 English tmwilliamlin168 2017-12-02 10:12:36 1616 Initial revision (saved to drafts)