#include <bits/stdc++.h>
using namespace std;
#define int long long
#define nl << '\n'
#define sp << ' ' <<
int h, w;
int g[2000][2000], maxElement, minElement;
bool possible(int diff){
int a[h], res = 0;
for(int i=0; i<h; ++i){
a[i] = 0;
for(int j=0; j<w; ++j){
if(g[i][j]-minElement<=diff and a[i]==j) ++a[i];
else res = max(res, maxElement-g[i][j]);
}
}
return res<=diff;
}
int search(){
maxElement = minElement = g[0][0];
for(int i=0; i<h; ++i)
for(int j=0; j<w; ++j)
maxElement = max(maxElement, g[i][j]), minElement = min(minElement, g[i][j]);
int res = maxElement - minElement;
int low = 0, high = res;
while(low<high){
int mid = (low+high)/2;
if(possible(mid)) high = mid;
else low = mid+1;
}
return low;
}
void rotate(){
int g0[h][w];
for(int i=0; i<h; ++i)
for(int j=0; j<w; ++j)
g0[i][j] = g[i][j];
swap(h, w);
for(int i=0; i<h; ++i)
for(int j=0; j<w; ++j)
g[i][j] = g0[j][w-1-i];
}
signed main(){
cin.tie(0)->sync_with_stdio(0);
cin >> h >> w;
for(int i=0; i<h; ++i)
for(int j=0; j<w; ++j)
cin >> g[i][j];
int ans = 1e18;
for(int _=0; _<2; ++_){
for(int __=0; __<4; ++__){
ans = min(ans, search());
rotate();
}
for(int i=0; i<h; ++i)
for(int j=0; j<w; ++j)
g[i][j] = -g[i][j];
}
cout << ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
4062 ms |
364 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
4062 ms |
364 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
4062 ms |
364 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |