Packing rectangles for compact representation. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T01:17:51Z http://stackoverflow.com/feeds/question/153123 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/153123/packing-rectangles-for-compact-representation 5 Packing rectangles for compact representation. stephanea 2008-09-30T13:56:22Z 2008-09-30T16:50:34Z <p>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. </p> <pre><code>-r1- -r2-- -r3-- -r4- -r5-- </code></pre> <p>something like.</p> <pre><code>-r1- -r3-- -r2-- -r4- -r5-- </code></pre> <p>All hints will be appreciated. I am not necessarily looking for "the" best solution.</p> http://stackoverflow.com/questions/153123/packing-rectangles-for-compact-representation/153357#153357 1 Answer by Jasper for Packing rectangles for compact representation. Jasper 2008-09-30T14:41:04Z 2008-09-30T15:24:45Z <p>Something like this?</p> <ul> <li>Sort your collection of rectangles by x-position </li> <li><p>write a method that checks which rectangles are present on a certain interval of the x-axis</p> <p>Collection overlaps (int startx, int endx, Collection rects){ ... }</p></li> <li><p>loop over the collection of rectangles</p></li> </ul> <pre><code> 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); } </code></pre> http://stackoverflow.com/questions/153123/packing-rectangles-for-compact-representation/153373#153373 1 Answer by twk for Packing rectangles for compact representation. twk 2008-09-30T14:44:35Z 2008-09-30T15:20:13Z <p>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 <a href="http://en.wikipedia.org/wiki/Bin_packing_problem" rel="nofollow">this page</a> is a good start. </p> http://stackoverflow.com/questions/153123/packing-rectangles-for-compact-representation/153374#153374 2 Answer by Kibbee for Packing rectangles for compact representation. Kibbee 2008-09-30T14:44:37Z 2008-09-30T14:44:37Z <p>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.</p> http://stackoverflow.com/questions/153123/packing-rectangles-for-compact-representation/153465#153465 0 Answer by Chris Johnson for Packing rectangles for compact representation. Chris Johnson 2008-09-30T15:05:43Z 2008-09-30T15:05:43Z <p>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.</p> <p>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.</p> <p>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?</p> http://stackoverflow.com/questions/153123/packing-rectangles-for-compact-representation/153954#153954 0 Answer by ceretullis for Packing rectangles for compact representation. ceretullis 2008-09-30T16:50:34Z 2008-09-30T16:50:34Z <p><a href="http://www.topcoder.com" rel="nofollow">Topcoder</a> had a competition to solve the 3D version of this problem. The winner discussed his approach <a href="http://www.topcoder.com/longcontest/?module=Static&amp;d1=match_editorials&amp;d2=intel_mtcs_6" rel="nofollow">here</a>, it might be an interesting read for you.</p>