Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-03-15 Thread Sourabh Singh
@ atul and saurabh Here is my code of what m trying to implement . here starting at bottom right corner we try to come up moving row by row . in end b matrix contain's dimention of rectangle which can be formed from Aij in Bij (width,height) plz.. post what u make of it... can it be improved

Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-03-14 Thread Sourabh Singh
@atul Also the histogram algo and algo given by you can't work on very very big dimentions. say 10^5 x 10^5 matrix. but if we can find a DP then we just need to keep 2 row's at a time. :-) On Tue, Mar 13, 2012 at 1:03 PM, Sourabh Singh singhsourab...@gmail.comwrote: @atul read it ..

Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-03-14 Thread rahul sharma
@atul..plz tell me an example for square matrix...actually i faced it first tym...it executes...but explain plz.. On Wed, Mar 14, 2012 at 6:56 PM, Sourabh Singh singhsourab...@gmail.comwrote: @atul Also the histogram algo and algo given by you can't work on very very big dimentions. say 10^5

Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-03-14 Thread atul anand
@rahul: i have alreday explained it in the provided link. @sourbh : why it would not work for large dimension On 14 Mar 2012 19:39, rahul sharma rahul23111...@gmail.com wrote: @atul..plz tell me an example for square matrix...actually i faced it first tym...it executes...but explain plz.. On

Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-03-14 Thread Sourabh Singh
@atul 1) it won't work for large dimention's coz their is a limit to size of array we can declare on stack. ( which is typically 10^6 as far as i know :-) ). 2) the algo i m trying to find would work in linear time. while this one is more then O(n^2) fo rvery very large input this algo

Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-03-14 Thread Sourabh Singh
@rahul may be this will help you.. /* Given a binary matrix, find out the maximum size square sub-matrix with all 1s. 1. O(n^3) sol is very obvious 2. O(n^2) sol [ this file] 3. O(n) sol [ possible but we need to know tucker matrix, etc advanced set theory's] */ #includeiostream

Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-03-14 Thread saurabh singh
On 3/15/12, Sourabh Singh singhsourab...@gmail.com wrote: @rahul may be this will help you.. /* Given a binary matrix, find out the maximum size square sub-matrix with all 1s. 1. O(n^3) sol is very obvious 2. O(n^2) sol [ this file] 3. O(n) sol [ possible but we need to know

Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-03-14 Thread saurabh singh
@sourabhThere are O(n^2) elements in the matrix of size nXn. Yes we can find patterns in a substring with n elements in O(n) but can you do that in O(sqrt(n)) (To complete your analogy), Beside's can you allocate a 10^6X10^6 matrix in an array? On 3/15/12, saurabh singh saurab...@gmail.com

Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-03-14 Thread atul anand
@Sourabh : here we are talking abt 2 different problems in this post..which are little bit similar. 1) original question says find max subset of matix contaning '1' and '0' we knw recurrence to solve this problem , as posted above. 2) now your question is to find max subset of matrix which

[algogeeks] Maximum size square sub-matrix with all 1s

2012-03-13 Thread rahul sharma
April 4, 2010 Given a binary matrix, find out the maximum size square sub-matrix with all 1s. For example, consider the below binary matrix. 0 1 1 0 1 1 1 0 1 0 0 1 1 1 0 1 1 1 1 0 1 1 1 1 1 0 0 0 0 0 The maximum square sub-matrix with all set bits is

Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-03-13 Thread atul anand
here is the recurrence for solving this R[i, j] = (M[i,j] == 0 ? 0 : 1 + min( R[i-1, j], R[i-1, j-1], R[i,,j-1] ) ); On Tue, Mar 13, 2012 at 11:48 AM, rahul sharma rahul23111...@gmail.comwrote: April 4, 2010 Given a binary matrix, find out the maximum size square sub-matrix with all 1s.

Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-03-13 Thread rahul sharma
wats d logic behind this??? On Tue, Mar 13, 2012 at 11:59 AM, atul anand atul.87fri...@gmail.comwrote: here is the recurrence for solving this R[i, j] = (M[i,j] == 0 ? 0 : 1 + min( R[i-1, j], R[i-1, j-1], R[i,,j-1] ) ); On Tue, Mar 13, 2012 at 11:48 AM, rahul sharma

Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-03-13 Thread Sourabh Singh
@ ALL finding square matrix is quite a standard question and nw an easy one as everyone knows the reccussence atul has given. but i wanted to find max rectangle.. i know there is a DP for it. in O(n^2). for nxn matrix..don't know the whole approach .but here is what i remember.. 1. aproach

Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-03-13 Thread atul anand
@ Sourabh: check solution i have posted in below link http://groups.google.com/group/algogeeks/browse_thread/thread/91a17f7c78c2319e/991d1c2625a62ff0?hl=enlnk=gstq=rectangle+of+max+sum+MS+Q#991d1c2625a62ff0 On Tue, Mar 13, 2012 at 10:26 PM, Sourabh Singh singhsourab...@gmail.comwrote: @ ALL

Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-03-13 Thread Sourabh Singh
@atul read it .. it's good but more or less like the histogram algo.. i wanted a DP. approach.. here is some of wat i heard from a senior in colg.. 1. at every index we can keep 4 variable ht: height of max rectangle possible at index above current wt width

[algogeeks] Maximum size square sub-matrix with all 1s

2012-01-10 Thread Sanjay Rajpal
Suggest an algorithm guyzzz. * Sanjay Kumar B.Tech Final Year Department of Computer Engineering National Institute of Technology Kurukshetra Kurukshetra - 136119 Haryana, India Contact: +91-8053566286 * -- You received this message because you are subscribed to the Google Groups

Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-01-10 Thread atul anand
i dint get...you should provide more details , if it is all 1 then whole matrix is a max square.. anyways equation to find max sub square is this. M[i,j]=R[i,j]==0 ? 0 : 1+min(M[i-1][,j] , M[i][j-1], M[i-1][j-1] ) On Tue, Jan 10, 2012 at 10:00 PM, Sanjay Rajpal sanjay.raj...@live.inwrote:

Re: [algogeeks] Maximum size square sub-matrix with all 1s

2012-01-10 Thread Sanjay Rajpal
Its a square matrix containing 0s and 1s. Will u plz elaborate about this equation ? * Sanjay Kumar B.Tech Final Year Department of Computer Engineering National Institute of Technology Kurukshetra Kurukshetra - 136119 Haryana, India Contact: +91-8053566286 * On Tue, Jan 10, 2012 at 8:36 AM,