Packing rectangles for compact representation. - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T01:17:51Zhttp://stackoverflow.com/feeds/question/153123http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/153123/packing-rectangles-for-compact-representation5Packing rectangles for compact representation.stephanea2008-09-30T13:56:22Z2008-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#1533571Answer by Jasper for Packing rectangles for compact representation.Jasper2008-09-30T14:41:04Z2008-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#1533731Answer by twk for Packing rectangles for compact representation.twk2008-09-30T14:44:35Z2008-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#1533742Answer by Kibbee for Packing rectangles for compact representation.Kibbee2008-09-30T14:44:37Z2008-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#1534650Answer by Chris Johnson for Packing rectangles for compact representation.Chris Johnson2008-09-30T15:05:43Z2008-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#1539540Answer by ceretullis for Packing rectangles for compact representation.ceretullis2008-09-30T16:50:34Z2008-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&d1=match_editorials&d2=intel_mtcs_6" rel="nofollow">here</a>, it might be an interesting read for you.</p>