Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
46767 | jiabokai | 最大空白区 | C++ | 通过 | 0 MS | 252 KB | 556 | 2024-05-05 11:48:07 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,m,maxn=0,a[35][35]; cin>>n>>m; for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ cin>>a[i][j]; } } for(int i=0;i<n;i++){ for(int j=0;j<m;j++){ int temp=0; for(int k=i;k>=0;k--){ for(int l=j;l>=0;l--){ int sum=0; for(int o=i;o>=k;o--){ for(int p=j;p>=l;p--){ sum+=a[o][p]; } } if(sum==0){ temp=(i-k+1)*(j-l+1); if(temp>maxn){ maxn=temp; } } } } } } cout<<maxn; }