vote up 5 vote down star
1

I am looking for pointers to the solution of the following problem: I have a set of rectangles, whose height is known and x-positions also and I want to pack them in the more compact form. With a little drawing (where all rectangles are of the same width, but the width may vary in real life), i would like, instead of.

-r1-
  -r2--
     -r3--
       -r4-
        -r5--

something like.

-r1-  -r3-- 
  -r2-- -r4-
         -r5--

All hints will be appreciated. I am not necessarily looking for "the" best solution.

flag
so basically you want to determine the first available y-position to draw a rectangle? – Jasper Sep 30 '08 at 14:02
Are you looking to pack them, or optimally pack them? – Douglas Mayle Sep 30 '08 at 14:03
looks like the x position is unchangeable but the y position is? – Mauro Sep 30 '08 at 14:11
I am having difficulty understanding the question. Perhaps better graphics will help. – freespace Sep 30 '08 at 14:33
I think what the whole idea is to minimize the number of rows, and efficiently use the space on each row. Assuming all rectangles are of same height. X position of all the rectangles are given and is fixed. However, Y coordinates can be changed. – Vivek Sep 30 '08 at 14:42
show 3 more comments

5 Answers

vote up 0 vote down

Topcoder had a competition to solve the 3D version of this problem. The winner discussed his approach here, it might be an interesting read for you.

link|flag
vote up 0 vote down

Are the rectangles all of the same height? If they are, and the problem is just which row to put each rectangle in, then the problem boils down to a series of constraints over all pairs of rectangles (X,Y) of the form "rectangle X cannot be in the same row as rectangle Y" when rectangle X overlaps in the x-direction with rectangle Y.

A 'greedy' algorithm for this sorts the rectangles from left to right, then assigns each rectangle in turn to the lowest-numbered row in which it fits. Because the rectangles are being processed from left to right, one only needs to worry about whether the left hand edge of the current rectangle will overlap any other rectangles, which simplifies the overlap detection algorithm somewhat.

I can't prove that this is gives the optimal solution, but on the other hand can't think of any counterexamples offhand either. Anyone?

link|flag
vote up 2 vote down

Put a tetris-like game into you website. Generate the blocks that fall and the size of the play area based on your paramters. Award points to players based on the compactness (less free space = more points) of their design. Get your website visitors to perform the work for you.

link|flag
Distributed computing at its best :) Let's call it the 'human brain cloud' :) – Roel Sep 30 '08 at 14:57
It may be a good solution, but i doubt i will find enough workers, with enough time. Thanks. – stephanea Sep 30 '08 at 15:14
vote up 1 vote down

Your problem is a simpler variant, but you might get some tips reading about heuristics developed for the "binpacking" problem. There has been a lot written about this, but this page is a good start.

link|flag
I first voted you up but reading the question again, if his x-coordinates are set he doesn't have an NP-hard problem. Depending on whether the height of the rectangles is all the same, it can be solved by something like Jasper's algorithm. – Roel Sep 30 '08 at 15:04
You are totally right -- I've edited my answer accordingly. – twk Sep 30 '08 at 15:20
vote up 1 vote down

Something like this?

  • Sort your collection of rectangles by x-position
  • write a method that checks which rectangles are present on a certain interval of the x-axis

    Collection overlaps (int startx, int endx, Collection rects){ ... }

  • loop over the collection of rectangles


    Collection toDraw;  
    Collection drawn;  
    foreach (Rectangle r in toDraw){  
    Collection overlapping = overlaps (r.x, r.x+r.width, drawn);  
    int y = 0;  
    foreach(Rectangle overlapRect in overlapping){  
    y += overlapRect.height;  
    }  
    drawRectangle(y, Rectangle);  
    drawn.add(r);  
    }  
link|flag
You can format code by starting every line with 4 spaces. – Roel Sep 30 '08 at 15:05
Aside from that, yeah I think this is a correct algorithm. I think it's the optimum, if the rectangles are all the same height and the x-coordinates (which I think are start times in a scheduling algorithm?) are fixed. – Roel Sep 30 '08 at 15:08
My rectangles are not all of the same height, and x-coordinates are really spatial, no temporal coordinates, but you're right that it changes nothing to the problem. – stephanea Sep 30 '08 at 15:12
the four spaces didn't work, but pre and code tags did. As for the problem of height that is determined in the inner for loop. If the height is fixed you could also multiply the height times the number of overlapping elements to calculate the y-position. – Jasper Sep 30 '08 at 15:44

Your Answer

Get an OpenID
or

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