Algorithm


B. Bargaining Table
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Bob wants to put a new bargaining table in his office. To do so he measured the office room thoroughly and drew its plan: Bob's office room is a rectangular room n × m meters. Each square meter of the room is either occupied by some furniture, or free. A bargaining table is rectangular, and should be placed so, that its sides are parallel to the office walls. Bob doesn't want to change or rearrange anything, that's why all the squares that will be occupied by the table should be initially free. Bob wants the new table to sit as many people as possible, thus its perimeter should be maximal. Help Bob find out the maximum possible perimeter of a bargaining table for his office.

Input

The first line contains 2 space-separated numbers n and m (1 ≤ n, m ≤ 25) — the office room dimensions. Then there follow n lines with m characters 0 or 1 each. 0 stands for a free square meter of the office room. 1 stands for an occupied square meter. It's guaranteed that at least one square meter in the room is free.

Output

Output one number — the maximum possible perimeter of a bargaining table for Bob's office room.

Examples
input
Copy
3 3
000
010
000
output
Copy
8
input
Copy
5 4
1100
0000
0000
0000
0000
output
Copy
16



 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <iostream>
#include <vector>

int main(){

    std::ios_base::sync_with_stdio(false);
    int n, m; std::cin >> n >> m;
    std::vector < std::string> rv(n); 
    for(int p = 0; p < n; p++){std::cin >> rv[p];}

    int maxPerim(0);
    for(int length = 1; length <= n; length++){
        for(int width = 1; width <= m; width++){
            for(int srow = 0; srow < n; srow++){
                if(srow + length > n){continue;}
                for(int scol = 0; scol < m; scol++){
                    if(scol + width > m){continue;}

                    bool possible(true);
                    for(int row = 0; row < length; row++){
                        if(!possible){break;}
                        for(int col = 0; col < width; col++){
                            if(rv[srow + row][scol + col] == '1'){possible = false; break;}
                        }
                    }

                    if(possible){
                        int perim = 2 * (length + width);
                        maxPerim = (maxPerim > perim) ? maxPerim : perim;
                    }
                }
            }
        }
    }

    printf("%d\n", maxPerim);

    return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
3 3
000
010
000

Output

x
+
cmd
8
Advertisements

Demonstration


Codeforces Solution-B. Bargaining Table-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+