Tagged Questions
-1
votes
0answers
39 views
Find the optimal box for a given set of items (3D) [closed]
Given some three dimensional boxes (with lenght, height and width) and a set of Items (sizes also given), I am trying to find the smallest box, in which all items fit.
Im looking for an efficient ...
1
vote
1answer
142 views
Packing Rectangles IOI 95
I'm working my way through the usaco training pages and came across this problem http://olympiads.win.tue.nl/ioi95/task/pack.html I don't understand the example input and output i.e. I cant find which ...
4
votes
1answer
172 views
Reverse Rectangle Packing
I have a connected shape that consists of squares put together, e.g. take a squared paper and draw a line along the existing lines that ends at its beginning and does not cross itself.
The goal is ...
3
votes
1answer
707 views
Packing different sized circles into rectangle - d3.js
I was trying to pack circles of different sizes into a rectangular container, not packing in circular container that d3.js bundled with, under d3.layout.pack.
here's the layout I want to achieve:
...
1
vote
0answers
184 views
layout algorithm for tightly-packed image thumbnails
I'm working on an image gallery and I'd like to tightly pack the image thumbnails. The thumbnails are:
different aspect ratios
available at the same source resolution (longest edge 256 pixels)
...
3
votes
3answers
201 views
Efficiently removing empty spaces within set of numbers
I'll use Python syntax and objects to represent the problem, but in reality it's meant for a model in SQL databases, with a Python API and ORM.
I have a list of numbers like this:
[0, 1, 2, 3, 4, 5, ...
2
votes
4answers
2k views
How to pack squares into circles?
I need to find the maximum number of whole squares of a given size that can be packed into a circle of a given radius. I don't need a solution. I just need some kind of a starting idea. The ...
0
votes
1answer
437 views
Find maximum size of rectangles to fill a container
I have a container, of a certain width and height. I have a bunch of blocks that I need to fit in the container but I need to calculate the maximum size these blocks can be to fit.
For example:
...
2
votes
3answers
1k views
Bin Packing - Brute force recursive solution - How to make it faster
I have an array which contains a list of different sizes of materials : {4,3,4,1,7,8} . However, the bin can accomodate materials upto size 10. I need to find out the minimum number of bins needed to ...
3
votes
1answer
729 views
Packing items into fixed number of bins
I am looking for an algorithm that will solve my problem in the most efficient way.
Problem description:
I have a list of items (only positive integers are allowed) and fixed number of bins of ...
1
vote
1answer
191 views
Pack images into a larger image
There are images (literally, PNG files), they come in different sizes and need to be put together into a larger image, so that (1) they don’t overlap, and (2) the amount of unused pixels is minimal.
...
0
votes
1answer
253 views
Packing fixed-size rectangles inside a circle with the biggest “zoom”
I need an algorithm to place a set of N rectangles inside a circle of radius R, so that they are scaled up to the biggest possible size that doesn't exceed the border of the circle. I'm still working ...
11
votes
4answers
808 views
Packing arbitrary polygons within an arbitrary boundary
I was wondering if anybody could point me to the best algorithm/heuristic which will fit my particular polygon packing problem. I am given a single polygon as a boundary (convex or concave may also ...
3
votes
4answers
738 views
fitting n variable height images into 3 (similar length) column layout
I'm looking to make a 3-column layout similar to that of piccsy.com. Given a number of images of the same width but varying height, what is a algorithm to order them so that the difference in column ...
0
votes
2answers
519 views
Packing problem
I have the following problem:
I have a given number of identically formed items with different colors (I know how many there are from each color)
I pack these items into boxes that can hold each a ...
6
votes
3answers
2k views
Algorithm to organise rectangles in the fixed rectangular container
My problem is pretty similar to 2D Knapsack problem, or cutting stock with one exception... the rectangles that fit into the container can be resized and cropped. No rotation is allowed though.
The ...
4
votes
2answers
779 views
What's an elegant algorithm for fitting differently sized rectangles into a circle?
I have a bunch of rectangles of variable size which I need to fit together roughly into a circle, presumably with the largest ones at the center.
NB. The circle is not of a fixed size - that's just ...
15
votes
3answers
286 views
Close-packing points in the plane?
For starters, no, this isn't a homework question. :-) It's just been something that's bothering me for a while.
Suppose that I have a complete, undirected graph G with a distance associated with ...
4
votes
1answer
714 views
Given a number of rectangles that can be rotated, find an enclosing rectangle of minimum area
So, I'm trying to implement an algorithm that takes in a number of rectangles as input and tries to pack them into a rectangle of minimum area. The rectangles can all be rotated by 90 degrees.
I ...
3
votes
4answers
378 views
Packing differently sized chunks of data into multiple bins
EDIT: It seems like this problem is called "Cutting stock problem"
I need an algorithm that gives me the (space-)optimal arrangement of chunks in bins. One way would be put the bigger chunks in ...
1
vote
1answer
698 views
Packing problem revisited
I'm developing a game and I found a problem that I have to solve to handle the layout of a component which resembles me a packing problem.
To summarize what I need to do suppose I've got a space ...
7
votes
2answers
863 views
Algorithm to fit windows on desktop (like tile)
I searching algorithm to solve problem like this:
I have few windows, each window can be moved and re sized but with specified ratio between width and height, eg. 2:1 (height:width).
Each window ...
4
votes
2answers
420 views
Packing problem
I want to write a little helper utility to organize my digitized audiobooks collection.
I have a set of folders which I need to write to CDs. The folders can not be split: each folder goes onto one ...
2
votes
1answer
712 views
How can I fill an outline with predefined tangram shapes?
I am interested in using shapes like these:
Usually a tangram is made of 7 shapes(5 triangles, 1 square and 1 parallelogram).
What I want to do is fill a shape only with tangram shapes, so at this ...
10
votes
2answers
561 views
Algorithm/approximation for combined independent set/hamming distance problem
Input: Graph G
Output: several independent sets, so that the membership of a node to all independent sets is unique. A node therefore has no connections to any node in its own set. Here is an example ...
7
votes
4answers
2k views
Fitting rectangles together in optimal fashion
I was wondering if anyone knows of any algorithms suited to fitting together N number of rectangles of unknown size into the smallest possible containing rectangle.
By optimal I mean with reducing ...
10
votes
3answers
1k views
Fast block placement algorithm, advice needed?
I need to emulate the window placement strategy of the Fluxbox window manager.
As a rough guide, visualize randomly sized windows filling up the screen one at a time, where the rough size of each ...
12
votes
3answers
853 views
Algorithm putting point into square with maximal minimum distance
I'm stuck on this: Have a square. Put n points into this square so the minimal distance (not necessary the average distance) is the highest possible.
I'm looking for an algorithm which would be able ...
1
vote
2answers
932 views
Polygon packing 2D
I have problem of packing 2 arbitrary polygons. I.e. we have 2 arbitrary polygons. We are to find such placement of this polygons (we could make rotations and movements), when rectangle, which ...
0
votes
1answer
615 views
2D packing with obstacles
Anybody know of an efficient algorithm for moving rectangles in a square which contains obstacles?
Rectangles:
can rotate
can move/teleport
must not collide with obstacles (black squares)
...
70
votes
9answers
13k views
Algorithm needed for packing rectangles in a fairly optimal way
Ive got a bunch of rectangular objects which I need to pack into the smallest space possible (the dimensions of this space should be powers of two).
I'm aware of various packing algorithms that will ...
5
votes
8answers
814 views
Text packing algorithm
I bet somebody has solved this before, but my searches have come up empty.
I want to pack a list of words into a buffer, keeping track of the starting position and length of each word. The trick is ...
5
votes
6answers
2k views
Packing rectangles for compact representation
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 ...
5
votes
6answers
3k views
Piece together several images into one big image
I'm trying to put several images together into one big image, and am looking for an algorithm which determines the placing most optimally. The images can't be rotated or resized, but the position in ...