记录编号 |
554935 |
评测结果 |
AAAAAAAAAAAAAAAAAAAA |
题目名称 |
[東方S2] 射命丸文 |
最终得分 |
100 |
用户昵称 |
tat |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
1.165 s |
提交时间 |
2020-09-23 19:33:51 |
内存使用 |
8.52 MiB |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
int a[1001][1001]={0},l[1001][1001]={0},maxx=0;
int main(int argc, char** argv) {
freopen("aya.in","r",stdin);
freopen("aya.out","w",stdout);
int n,m,r,c;
cin>>n>>m>>r>>c;
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
cin>>l[i][j];
a[i][j]=a[i-1][j]+a[i][j-1]+l[i][j]-a[i-1][j-1];
}
}
for(int i=r;i<=n;i++){
for(int j=c;j<=m;j++){
maxx=max(maxx,a[i][j]+a[i-r][j-c]-a[i-r][j]-a[i][j-c]);
}
}
cout<<' '<<maxx;
return 0;
}