vote up 0 vote down star

Given a set of N-dimensional integer points how do I find the smallest set of N-dimensional cuboids (rectangles in the 2-d case), such that an integer point is in the set of integer points if and only if it's contained in one or more of the cuboids/rectangles. Integer point means a point with integer coordinates.

e.g. given the points (1,0), (2, 0) and (3,1), (4,1) the smallest set of rectangles is (1,0-2,0),(3,1-4,1), see diagram below:

2 .....
1 ...##
0 .##..
  01234

Obviously I could do a brute force search, but I'm looking for a more efficient algorithm, even if it still has high complexity.

flag
I think "if and only if" must be a mistake. You're talking about a finite set of points, not the entire interior of the n-dimensional boxes. – Mike Kantor Jul 16 at 13:46
are overlapping rectangles/cuboids allowed ('contained in one or more' suggests overlapping rectangles/cuboids are permitted)? – mas Jul 16 at 15:03

1 Answer

vote up 0 vote down

There are many approaches to locate existing points:

  1. Put the points into a hash map for quick lookup. This is probably the best approach for the general case where you can't know how many holes the points will leave if you try to collect them. In the worst case, you'll get one rectangle per point.

  2. If you have one or few Z coordinates, collect the points in a bitmap (1 bit depth). Just turn the pixel in the bitmap on.

  3. If you really need to collect the points in rectangles, you must first put them into an ordered set (by coordinate). Iterate over this set many times. Each time, take the first point out of the set. Then look for any point which is a left/right neighbor to the one you already have. If there is one, join them into a (horizontal) line. Grow that line as you get more points.

When there are no points left, do the same for the lines to grow rectangles.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.