The bin-packing tag has no wiki summary.
0
votes
0answers
15 views
PSO for One Dimensional Bin Packing
Am working on resolving a simple one dimensional bin packing problem using the particle swarm optimization approach and i have a deep problem in understanding the story of velocity .
so the pso ...
2
votes
0answers
107 views
+50
Dynamic Object Layout
I have an array of 50 objects, each width a different width and height. My objective is to create panels to hold this objects and keep them in order, but this panel cannot exceed a width of 300 pixels ...
0
votes
0answers
15 views
Graph Partitioning and Cuts for Bin-Packing
The idea is the following: pretend I have a graph which shows relationships between two types of nodes (i.e. nodes represented A-Z represent node type xx and nodes represented 1-10 represent node type ...
0
votes
1answer
15 views
bin-packaging layout with similar to masonry.js or isotope.js without ordering by existing elements
I trying to create layout that will be filled with elements in way of minimizing whitespace between them. The problem is that all libraries I tried do this ordering items from left to right and from ...
1
vote
1answer
120 views
Improved First Fit
I am working on different heuristic solutions for the bin packing problem and have implemented different algorithms such as FF, FFD, BF, BFD and so on. My question is, is there any better algorithm ...
0
votes
0answers
29 views
Heuristic for Bin Packing (Almost worst fit)
i have one question. i'm already search about this problem but i haven't get an answer for this.
Almost Worst fit is similar with Worst fit but Almost worst fit put the item in the
second-emptiest ...
0
votes
1answer
57 views
Simplified rectangle packing algorithm. Being able to pick from bigger pool of shapes.
I have a rectangle with 200 width and 100 height. I have a mix pool of 50 rectangles and boxes. The rectangles comes in shapes like 20x40, and 40x20. The boxes will come in shapes of 20x20 and 40x40. ...
1
vote
0answers
63 views
Bin packing with remotion
I have a rectangle, and need to dynamically put and remove smaller rectangles in/from it. This is basically the bin packing problem, but also allows for item removal.
I cannot recreate everything ...
2
votes
1answer
89 views
Where can I find the source for Android home screen widget layout?
Today I had my first time with Android 4.2, and I noticed how the home screen automatically repositions widgets as you drag them:
I recently worked on a similar code for our project, and I have ...
-1
votes
1answer
175 views
Bin packing - exact np-hard exponential algorithm
I wrote a heuristic algorithm for the bin packing problem using best-fit aproach,
itens S=(i1,...,in), bins size T, and a want to create a real exact exponential
algorithm witch calculates the optimal ...
-2
votes
1answer
164 views
Bin Packing Optimization Best Fit
I have this Bin Packing code:
Public Class Cortar
Private _Cortes() As Integer
Public BarrasCortes()() As Integer
Private _TamanhoBarra As Integer = 100
Public Property ...
0
votes
2answers
199 views
Random rectangles placement with minimal overlap and good dispersion
I have a Big Rectangle (axis-oriented) containing a lot of Small Rectangles (with the same orientation of the parent and with a fixed size of 82x176 pixels).
Now I have a Small Rectangle which is ...
7
votes
1answer
248 views
Block layout algorithm
I'm looking for help with improving an algorithm for placing blocks of odd shapes. My problem domain is odd, but the best analogy for my blocks is Tetris pieces, except that they can have more than ...
0
votes
0answers
63 views
Arranging elements in a grid
I am trying to pack elements inside a DIV using below code, but it is not giving me reliable result. I am trying to fit elements into container with best possible space usage.
window.onload = ...
3
votes
2answers
255 views
Detecting gaps in grid of divs
EDIT The solution has been found!
Here's a blog post about it, and here is the Github repo!
I am working on creating a grid of divs that is composed of multiple sized boxes, these sizes are set ...
0
votes
0answers
493 views
Bin Packing using Dynamic Programming
Problem Statement: You have n1 items of size s1, n2 items of size s2, and n3 items of size s3. You'd like to pack all of these items into bins each of capacity C, such that the total number of bins ...
0
votes
1answer
1k views
Correct best-fit algorithm for bin packing?
I have the following numbers
6,8,9,4,3,2,10,7,14,12,6,2,3,1,10,11,13,5
I wish to know the correct way to implement the best-fit 1D Bin packing algorithm for these.
Because in this video ...
1
vote
1answer
957 views
Bin packing algorithm
I have a kitchen heating meals from frozen, they need to produce meals to a head count order. The meals come in frozen sizes of portions such as 4's, 6's etc. The larger sizes have a lower cost per ...
0
votes
0answers
132 views
Graph partitioning based on nodes and edges weights
I have a graph G=(V,E) that both edges and nodes have weights. I want to partition this graph to create equal sized partitions. The definition of the size of partition is sum(vi)-sum(ej) where vi is ...
1
vote
2answers
229 views
bin packing with overlapping objects
I have some bins with different capacities and some objects with specified size. The goal is to pack these objects in the bins. Until now it is similar to the bin-packing problem. But the twist is ...
0
votes
0answers
115 views
multi level hierarchical clustering selection
I have hierarchical clustering tree (using linkage). Each cluster has its own level in the dendrogram which corresponds to the cost of that cluster. I have budget for n1 clusters with cost c1, n2 ...
1
vote
1answer
136 views
Algorithm to place images next to stories in a constrained 4-column newspaper grid
This question is about any code or pointer that facilitates layout of images "near" to stories within a constrained and well-defined grid.
These are the basics and inputs:
The entire object is ...
1
vote
2answers
180 views
How can I get final bin size with javascript growing bin packing algorithm?
Using this 2d bin-packing algorithm (EDIT: Fixed demo) which is a variation of this how can I get the final bin width and height of each bin?
My demo code follows:
var blocks = [
{w: 1000, h: ...
0
votes
1answer
195 views
Algorithm for resource allocation by project (Bin Packing?)
Please let me know which algorithm is appropriate for the problem below:
We have a finite number of projects in a given 3 month period (typically < 50). Each project has a number of hours.
We ...
6
votes
2answers
2k 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 ...
13
votes
2answers
5k 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.
...
0
votes
0answers
201 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 ...
-1
votes
2answers
530 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 ...
1
vote
2answers
342 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 ...
0
votes
1answer
81 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 ...
3
votes
1answer
161 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
1answer
728 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
0answers
198 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
204 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 ...
14
votes
3answers
2k 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 - ...
1
vote
2answers
303 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 ...
2
votes
4answers
991 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
135 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 ...
8
votes
1answer
997 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 ...
1
vote
3answers
278 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 ...
2
votes
2answers
645 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 ...
0
votes
4answers
143 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 ...
3
votes
4answers
1k 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 ...
0
votes
1answer
717 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 ...
2
votes
4answers
554 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
352 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 ...
5
votes
4answers
397 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 ...
2
votes
1answer
825 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 ...
2
votes
3answers
2k 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 ...
0
votes
1answer
234 views
Shelf packing issue
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 ...

