Tagged Questions
The bin-packing tag has no wiki summary.
14
votes
4answers
1k views
3 dimensional bin packing algorithms
I'm faced with a 3 dimensional bin packing problem and am currently conducting some preliminary research as to which algorithms/heuristics are currently yielding the best results. Since the problem is ...
12
votes
3answers
615 views
Algorithm for fitting objects in a space
I have a collection of different sized squares and rectangles that I want to fit together using PHP into one large square/rectangle. The squares are usually images that I want to make into a montage - ...
7
votes
1answer
460 views
Optimized data structure for 2d spatial search and Javascript implementation?
I'm working on a Tetris-type HTML5 game and need to beef up a space optimization algorithm.
Rectangular blocks of varying size need to be added to the canvas in the most space efficient way. I know ...
7
votes
4answers
798 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 ...
5
votes
1answer
103 views
How is 2D bin packing achieved programmatically?
There are a few similar questions on stackoverflow, but none of them seem to provide a tangible answer that someone without a solid understanding of NP-hard problems and algorithms can understand.
...
5
votes
4answers
286 views
Fair product distribution algorithm
Here is my problem:
There are n companies distributing
products.
All products should be distributed in k days
Distributing products of company Ci should be consecutive - it means that it can be ...
5
votes
4answers
5k views
Where can I find open source 2d bin packing algorithms?
I'm looking for open source (preferably c++) algorithms for 2d bin packing of rectangular and or irregular shapes. I've found several papers on the subject but no code.
5
votes
7answers
6k views
How can I programmatically determine how to fit smaller boxes into a larger package?
Does anyone know of existing software or algorithms to calculate a package size for shipping multiple items?
I have a bunch of items in our inventory database with length, width and height dimesions ...
3
votes
1answer
75 views
sql combination
I have a sql query which select the best combination of hours with the heighest weight, It uses a recursive CTE to do find all the combinations of hours as shown below
Declare @EmpClasses table(Id ...
3
votes
4answers
606 views
Algorithm to determine (x,y) coordinates for rectangles so the area of the surrounding rectangle is minimal?
I hope my title makes sense, but here is what I a trying to do:
I have n rectangles, each with widths of Wn and heights of Hn that I need to arrange so on a two dimensional (x,y) plane the rectangle ...
2
votes
1answer
76 views
Is there a c++ source/lib to solve 2D Bin Packing with a rectangular bin (not square) and rotation?
As the title already says I need C/C++ sourcecode or a library that I can use to solve the Bin Packing problem with 2D rectangular shapes where the bin is also rectangular and the rectangles are also ...
2
votes
1answer
122 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 ...
2
votes
4answers
346 views
who knows algorithm about stones and backpack?
maybe somebody knows algorithm, or just what name it has, for putting stones (different weight) into different size backpacks?
I should do it in Prolog. I give weights of stones and capacities of ...
2
votes
2answers
187 views
Dividing a list of numbers into roughtly equal totals
I'm aware that there probably isn't a "perfect" solution to my question (this sounds like a variation of the knapsack or the bin packing problem), but here's my scenario:
I want to divide a list of ...
2
votes
3answers
736 views
Bin packing implementation in C++ with STL
This is my first time using this site so sorry for any bad formatting or weird formulations, I'll try my best to conform to the rules on this site but I might do some misstakes in the beginning.
I'm ...
2
votes
3answers
3k views
3d bin packing algorithm
I am looking for a deterministic implementation for any 3d bin packing algorithm, i.e. for packing many small and different cuboids inside one or many bigger ones. The solution could vary from the ...
1
vote
2answers
83 views
Algorithm needed for distributing rectangles evenly within another rectangle
I am looking for an algorithm that can help distribute different sized rectangles within a larger rectangle while minimizing overlapping.
I have looked at bin packing algorithms, but they seem to ...
1
vote
0answers
66 views
Rectangle packing with static rectangles
I've implemented a rectangle packing class similar to the one mentioned here. My ultimately goal is to pack a number of smaller sprites into a large spritesheet.
The difficulty I'm experiencing is ...
1
vote
0answers
88 views
Packing a single rectangle into smaller ones by cutting
Given a rectangle of arbitary size I want to pack it into rectangles of fixed size, the less the better.
To make this even possible, the input rectangle can be cut into smaller parts before it is ...
1
vote
4answers
409 views
Dynamic Programming Problem.. Array Partitioning..
The question says,
That given an array of size n, we have to output/partition the array into subsets which sum to N.
For E,g,
I/p arr{2,4,5,7}, n=4, N(sum) = 7(given)
O/p = {2,5}, {7}
I ...
1
vote
0answers
68 views
How do file systems allocate space for files? Is it a bin packing problem?
I used to work on software for manufacturing stuff out of wood, glass, stone etc. and provided means to automatically lay out parts minimizing waste. Many of you know this as bin packing problem. I ...
1
vote
3answers
235 views
Looking for suggestions on understanding a particular combinatorial optimization problem
Given a set of items (sized anywhere from 1 to 100) and a number of bins (1 to 15.) Each item having a subset of bins the item can be assigned to and a preference ordering of which bin is best, second ...
1
vote
1answer
262 views
Bin Packing: Set amount on bins, want to minimize the max bin weight
Given n bins of infinite capacity, I want to pack m items into them (each with a specific weight), whilst minimizing the weight of the heaviest bin.
This isn't a traditional bin packing / knapsack ...
1
vote
1answer
436 views
Algorithm that is a combination of the continuous knapsack problem and the variable size bin packing problem
I'm trying to solve a problem (in php, but programming language doesn't matter).
I'm having a n number of persons that have paid money, and I have got a m number of persons that are going to pay the ...
1
vote
2answers
448 views
How to generate random lines of text of a given length from a dictionary of words (bin-packing problem)?
I need to generate three lines of text (essentially jibberish) that are each 60 characters long, including a hard return at the end of each line. The lines are generated from a dictionary of words of ...
0
votes
0answers
44 views
bin-packing greedy output deviation / lower bound for approximation ratio
BIN-PACKING
You pack object 1 into a box. For i = 2,...,n object i is put in the first box in which it still fits. If all the the boxes are full, you open a new box.
The maximum that fits into a box ...
0
votes
1answer
26 views
Auto Belt Width Algorithm
I would really appreciate some comments about this practical problem.
Quick description.
I have a variable number of links that can be used to make up a given belt width. The question is, how many ...
0
votes
1answer
97 views
Packing bitmaps
I am trying to pack font glyph images into a single texture. The bitmaps are 1 byte per pixel monochromatic and I wish to pack them all together onto 1 texture. I am able to calculate the minimum ...
0
votes
4answers
93 views
Minimum message length algorithm problem
I have bundles of objects different size ( lot of objects can have same size, example: I have 54 object of 6B, 76 of 10B, 79 of 24B etc. Size of objects is 6, 8 ,10 .... bytes ). I need to pack that ...
0
votes
1answer
493 views
C# Algorithm to generate image (2048x2048) from some images
What I would like to do is create an image (2048x2048 in my case)
The algorithm should work in this way:
-User select some images from a folder and tells my program "generate image"
-The program ...
0
votes
1answer
148 views
Shelf packing problem
I'm faced with a Shelf Packing problem and am currently conducting some preliminary research as to which algorithms/heuristics are currently yielding the best results. Since the problem is NP hard I ...
0
votes
1answer
589 views
I need an alternative to the first fit decreasing bin packing algorithm that always finds an optimal solution
I have implemented the First-Fit-Decreasing bin packing algorithm to split a list of numbers into two 'bins' of equal size. The algorithm almost always finds the optimal packing arrangement but ...
-1
votes
2answers
85 views
Simplified process for Conditional Bin Packing in Java
I have a algorithm which does bin packing based on certain conditions. I find that the flow of the algorithm is little bit complex for the readers to understand.
Below you can find the developed Java ...
-2
votes
0answers
33 views
Bezier Curve packing(Bin packing) [closed]
Can anyone help me to find a good article or source code to packing bezier curves into a rectangular surface?
I found rectangular bin packing in C# or C++ only!!
please help to figure it out and post ...