#include <bits/stdc++.h>
using namespace std;
#define inf 1e18
#define int long long
const int mod=1e9+7;
const int MAXN=501;
vector<vector<int>>dp(MAXN,vector<int>(MAXN,0)),mat(MAXN,vector<int>(MAXN,0));
inline int sum(int x1,int x2,int y1,int y2){
return dp[x2][y2]-dp[x1-1][y2]-dp[x2][y1-1]+dp[x1-1][y1-1];
}
int32_t main(){
int n,m,a,b;
cin>>n>>m>>a>>b;
if(a>b) swap(a,b);
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
cin>>mat[i][j];
dp[i][j]=mat[i][j]+dp[i-1][j]+dp[i][j-1]-dp[i-1][j-1];
}
}
int ans=inf;
for(int rowst = 1; rowst <= n; rowst++){
for(int rownd = 1; rownd <= n; rownd++){
int l=1,r=1;
while(r<=m){
int now=sum(rowst,l,rownd,r);
ans=min(ans, abs(a-now)+abs(b-now));
if(now>b){
l++;
if(l>r){
r++;
}
}
else if(now>=a){
cout<<b-a<<"\n";
return 0;
}
else{
r++;
}
}
}
}
cout<<ans<<"\n";
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
4184 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
4184 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
4184 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |