#include <bits/stdc++.h>
using namespace std;
#define inf 1e18
#define int long long
const int mod=1e9+7;
const int MAXN=505;
vector<vector<int>>dp(MAXN,vector<int>(MAXN,0));
vector<vector<int>>mat(MAXN,vector<int>(MAXN,0));
int omg(int x1,int y1,int x2,int y2){
return dp[x2][y2]-dp[x1-1][y2]-dp[x2][y1-1]+dp[x1-1][y1-1];
}
int32_t main(){
int x,y,a,b,ans=inf,temp;
cin>>x>>y>>a>>b;
if(a>b){
temp=a;
a=b;
b=temp;
}
for(int i=1;i<=x;i++)
for(int j=1;j<=y;j++)
cin>>mat[i][j];
for(int i=1;i<=x;i++)
for(int j=1;j<=y;j++)
dp[i][j]=mat[i][j]+dp[i-1][j]+dp[i][j-1]-dp[i-1][j-1];
for(int j=1;j<=y;j++)
for(int i=1;i<=y;i++){
int l=1,r=1;
while(r<=x){
int aq=omg(j,l,i,r);
ans=min(abs(a-aq)+abs(b-aq),ans);
if(aq>b){
l++;
if(l>r)
r++;
}
else if(aq>=a){
cout<<b-a<<"\n";
return 0;
}
else
r++;
}
}
cout<<ans<<"\n";
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4440 KB |
Output is correct |
2 |
Correct |
2 ms |
4444 KB |
Output is correct |
3 |
Correct |
3 ms |
4368 KB |
Output is correct |
4 |
Incorrect |
2 ms |
4444 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4440 KB |
Output is correct |
2 |
Correct |
2 ms |
4444 KB |
Output is correct |
3 |
Correct |
3 ms |
4368 KB |
Output is correct |
4 |
Incorrect |
2 ms |
4444 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
4440 KB |
Output is correct |
2 |
Correct |
2 ms |
4444 KB |
Output is correct |
3 |
Correct |
3 ms |
4368 KB |
Output is correct |
4 |
Incorrect |
2 ms |
4444 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |