#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll N = 505;
ll n, m, a, b, mat[N][N];
ll f(ll i, ll j, ll x, ll y){
return mat[x][y] - mat[x][j - 1] - mat[i - 1][y] + mat[i - 1][j - 1];
}
int main(){
cin >> n >> m >> a >> b;
ll mn = 1e18;
for (ll i = 1; i <= n; i ++){
for (ll j = 1; j <= m; j ++){
cin >> mat[i][j];
if (mat[i][j] > b)
mn = min(mn, mat[i][j]);
mat[i][j] += mat[i - 1][j];
mat[i][j] += mat[i][j - 1];
mat[i][j] -= mat[i - 1][j - 1];
}
}
ll ans = abs(mn - b) + abs(mn - a);
for (ll i = 1; i <= n; i ++){
for (ll j = 1; j <= m; j ++){
for (ll x = i; x <= n; x ++){
if (f(i, j, x, j) > b) break;
ll l = j;
ll r = m + 1;
while (r - l > 1){
ll mid = (l + r) / 2;
if (f(i, j, x, mid) > b)
r = mid;
else
l = mid;
}
ll sm = f(i, j, x, l);
ans = min(ans, abs(a - sm) + abs(b - sm));
if (l < m) sm = f(i, j, x, l + 1);
ans = min(ans, abs(a - sm) + abs(b - sm));
}
}
}
cout << ans << endl;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Incorrect |
0 ms |
348 KB |
Output isn't correct |
5 |
Halted |
0 ms |
0 KB |
- |