小吴2011 @ 2024-12-03 22:39:23
看起来没问题啊!求大佬指导,本蒟蒻真不行了ಥ_ಥ
#include<bits/stdc++.h>
using namespace std;
int n,m;
char w[11][11];
bool num(int k,int d,int k1,int d1) {
int a[2]={0,0};
for(int i=k;i <= k1;i++) {
for(int j = d;j <= d1;j++) {
a[w[i][j]]++;
}
}
return a[1] == a[0];
}
int main() {
cin >> n >> m;
for(int i = 1;i <= n;i++) {
for(int j = 1;j <= m;j++) {
cin >>w[i][j];
}
}
int ans=0;
for(int x1=1;x1 <= n;x1++) {
for(int y1=1;y1 <= m;y1++) {
for(int x2=x1;x2 <= n;x2++) {
for(int y2=y1;y2 <= m;y2++) {
if(num(x1,y1,x2,y2))
ans=max(ans,(x2-x1+1)*(y2-y1+1));
}
}
}
}
cout << ans;
return 0;
}
by Erica_N_Contina @ 2024-12-03 22:59:13
注意你的 w[i][j] 是char 不是 int