Results 1 to 2 of 2
- 12-08-2012, 07:13 PM #1
Member
- Join Date
- Dec 2012
- Posts
- 1
- Rep Power
- 0
Knapsack problem , check if matrix can fill list of smaller matrix list.
Hi, i have a list of arrays ( of sizes , for example : 3X1 , 4X2 and so on..) i want to check if i can put all of them in one matrix.
i need to do it in a recursive way.
the function i need to write is get the size of the matrix and 2d array called tiles.
tiles[][] contains for example {{1, 1}, {1, 1}, {1, 1}, {1, 1}}, and the size of the matrix 2,2.
now i need to take those details and check if the matrix contains the list of tiles , for this example is true because {1,1} is a one place in the matrix is like 1X1 , before the X is Height and after is Width. ( you can see in the image below).
the function is :
public static int[][] insertIntoKnapsack(int n, int m, int[][] tiles) {
int[][] ans = new int[n][m];
int H,W;
for(int ind=0;ind<tiles.length;ind++)
{
H = tiles[ind][0];
W = tiles[ind][1];
now i stuck i dont know what do to check.
any ideas?
thanks.
Last edited by ofirattia; 12-08-2012 at 07:31 PM. Reason: details
- 12-08-2012, 07:20 PM #2
Moderator
- Join Date
- Jul 2010
- Location
- California
- Posts
- 1,609
- Rep Power
- 5
Re: Knapsack problem , check if matrix can fill list of smaller matrix list.
Similar Threads
-
[FIXED]ArrayList of booleans, check if all of the list is false?
By Lionlev in forum New To JavaReplies: 1Last Post: 10-16-2012, 10:34 PM -
Java array matrix problem.. please help!
By Asvin in forum New To JavaReplies: 5Last Post: 04-11-2011, 07:35 PM -
how to check scalability of matrix
By ajay kumar in forum Advanced JavaReplies: 0Last Post: 12-04-2009, 12:53 PM -
how to check scalability of matrix
By ajay kumar in forum Java 2DReplies: 0Last Post: 12-04-2009, 06:30 AM -
Help with matrix
By susan in forum New To JavaReplies: 1Last Post: 08-07-2007, 04:37 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks