0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00

P1387 最大正方形

R63951894
This commit is contained in:
Baoshuo Ren 2021-11-30 13:01:22 +08:00 committed by Baoshuo Ren
parent 67b2681e6f
commit 3a85a14a17
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

38
Luogu/P1387/P1387.cpp Normal file
View File

@ -0,0 +1,38 @@
#include <bits/stdc++.h>
using std::cin;
using std::cout;
using std::endl;
int n, m, ans;
bool g[105][105];
bool check(int x1, int y1, int x2, int y2) {
for (int i = x1; i <= x2; i++) {
for (int j = y1; j <= y2; j++) {
if (!g[i][j]) return false;
}
}
return true;
}
int main() {
cin >> n >> m;
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
cin >> g[i][j];
}
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
for (int k = 1; k <= std::min(n, m); k++) {
if (i + k > n || j + k > m) break;
if (check(i, j, i + k - 1, j + k - 1)) {
ans = std::max(ans, k);
}
}
}
}
cout << ans << endl;
return 0;
}