#include<bits/stdc++.h>
#define el '\n'
#define fi first
#define sc second
#define int ll
#define pii pair<int, int>
#define all(v) v.begin(), v.end()
using namespace std;
using ll=long long;
using ull=unsigned long long;
using ld=long double;
const int mod=1e9+7;
const int N=1e5+11;
int m, n;
void sol()
{
cin >> m >> n;
int a[m+4][n+4], pfs[m+4][n+4];
memset(pfs, 0, sizeof pfs);
for(int i=1;i<=m;i++) for(int j=1;j<=n;j++)
{
cin >> a[i][j];
pfs[i][j]=pfs[i-1][j]+pfs[i][j-1]-pfs[i-1][j-1]+a[i][j];
}
int ans=1e18, all=pfs[m][n];
for(int len=1;len<=m;len++)
{
for(int i=1;i+len-1<=m;i++)
{
int ma=0;
for(int j=1;j<=n;j++)
{
int sl1=pfs[i+len-1][j]-pfs[i-1][j];
ans=min(ans, all+j*len-2*sl1-ma);
ma=max(ma, j*len-2*sl1);
}
}
}
cout << ans;
}
signed main()
{
// freopen("divisor.INP", "r", stdin);
// freopen("divisor.OUT", "w", stdout);
ios_base::sync_with_stdio(0);
cin.tie(0);
int t=1;
//cin >> t;
while(t--)
{
sol();
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
1 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
1624 KB |
Output is correct |
2 |
Correct |
3 ms |
1372 KB |
Output is correct |
3 |
Correct |
1 ms |
1372 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
75 ms |
78676 KB |
Output is correct |
2 |
Correct |
100 ms |
80556 KB |
Output is correct |
3 |
Correct |
77 ms |
80616 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
12 ms |
9816 KB |
Output is correct |
2 |
Correct |
13 ms |
9820 KB |
Output is correct |
3 |
Correct |
12 ms |
9836 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
604 KB |
Output is correct |
2 |
Correct |
4 ms |
820 KB |
Output is correct |
3 |
Correct |
3 ms |
604 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
101 ms |
12368 KB |
Output is correct |
2 |
Correct |
101 ms |
12380 KB |
Output is correct |
3 |
Correct |
123 ms |
12380 KB |
Output is correct |