#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define sz(a) (int)a.size()
#define all(a) begin(a),end(a)
const int N = (int)2e3+10;
int n, m, a[N][N], b[N][N], c[N][N], dp[N][N], pref[N][N], lst[N];
void Rotate(){
for(int i = 0; i < n; i++)
for(int j = 0; j < m; j++)
c[i][j] = b[i][j];
for(int i = 0; i < n; i++)
for(int j = 0; j < m; j++)
b[j][i] = c[i][m-j-1];
swap(n,m);
}
bool calc(){
for(int k : {0,1}){
memset(dp,0,sizeof(dp));
memset(pref,0,sizeof(pref));
memset(lst,0,sizeof(lst));
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
pref[i][j+1] = pref[i][j]+(!b[i][j] or b[i][j]==k);
if(b[i][j]==k) lst[i]=j;
}
}
for(int j = 0; j <= m; j++)
dp[0][j] = (pref[0][j]==j and j>=lst[0]);
for(int i = 0; i < n; i++){
for(int j = 0; j <= m; j++){
if(pref[i][j]==j and j>=lst[i]){
if(!i) dp[i][j]=1;
else{
for(int k = lst[i-1]; k <= j; k++)
dp[i][j]|=dp[i-1][k];
}
}
}
}
bool ok = 0;
for(int i = 1; i <= m; i++) ok|=dp[n-1][i];
if(ok) return 1;
}
return 0;
}
bool chk(int R){
memset(b,0,sizeof(b));
int mn = (int)1e9, mx = 0;
for(int i = 0; i < n; i++)
for(int j = 0; j < m; j++)
mn = min(mn, a[i][j]), mx = max(mx, a[i][j]);
for(int i = 0; i < n; i++)
for(int j = 0; j < m; j++)
b[i][j]=(a[i][j]>mn+R?2:a[i][j]<mx-R);
bool ok = 0;
for(int _ : {0,1,2,3}) ok|=calc(), Rotate();
return ok;
}
int main(){
cin >> n >> m;
for(int i = 0; i < n; i++)
for(int j = 0; j < m; j++)
cin >> a[i][j];
int l = 0, r = (int)1e9;
while(l<r){
int mid = (l+r)/2;
if(chk(mid)) r=mid;
else l=mid+1;
}
cout << l << "\n";
}
Compilation message
joioi.cpp: In function 'bool chk(int)':
joioi.cpp:60:10: warning: unused variable '_' [-Wunused-variable]
60 | for(int _ : {0,1,2,3}) ok|=calc(), Rotate();
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
161 ms |
48464 KB |
Output is correct |
2 |
Correct |
186 ms |
48520 KB |
Output is correct |
3 |
Correct |
314 ms |
48520 KB |
Output is correct |
4 |
Correct |
295 ms |
48460 KB |
Output is correct |
5 |
Correct |
317 ms |
48464 KB |
Output is correct |
6 |
Incorrect |
323 ms |
48328 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
161 ms |
48464 KB |
Output is correct |
2 |
Correct |
186 ms |
48520 KB |
Output is correct |
3 |
Correct |
314 ms |
48520 KB |
Output is correct |
4 |
Correct |
295 ms |
48460 KB |
Output is correct |
5 |
Correct |
317 ms |
48464 KB |
Output is correct |
6 |
Incorrect |
323 ms |
48328 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
161 ms |
48464 KB |
Output is correct |
2 |
Correct |
186 ms |
48520 KB |
Output is correct |
3 |
Correct |
314 ms |
48520 KB |
Output is correct |
4 |
Correct |
295 ms |
48460 KB |
Output is correct |
5 |
Correct |
317 ms |
48464 KB |
Output is correct |
6 |
Incorrect |
323 ms |
48328 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |