#include <bits/stdc++.h>
using namespace std;
const int INF = 0x3f3f3f3f;
int h, w, mx = 0, mn = INF;
vector< vector<int> > a;
void flip_h() {
for (int j = 0; j < w; j++) {
for (int i = 0; i < h / 2; i++) {
swap(a[h - i - 1][j], a[i][j]);
}
}
}
void flip_v() {
for (int i = 0; i < h; i++) {
for (int j = 0; j < w / 2; j++) {
swap(a[i][w - j - 1], a[i][j]);
}
}
}
int check(int k) {
int t = -1;
for (int i = 0; i < h; i++) {
for (int j = 0; j < w - 1; j++) {
if (a[i][j] < mx - k) {
t = max(t, j + 1);
}
}
for (int j = 0; j < t; j++) {
if (a[i][j] > mn + k) {
return 0;
}
}
}
return 1;
}
int solve() {
int lo = 0, hi = mx - mn, ans;
while (lo < hi) {
int mid = (lo + hi) / 2;
if (check(mid)) {
hi = mid;
} else {
lo = mid + 1;
}
}
return lo;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cin >> h >> w;
a.assign(h, vector<int>(w));
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
cin >> a[i][j];
mx = max(mx, a[i][j]);
mn = min(mn, a[i][j]);
}
}
int ans = solve();
flip_h();
ans = min(ans, solve());
flip_v();
ans = min(ans, solve());
flip_h();
ans = min(ans, solve());
cout << ans << '\n';
return 0;
}
Compilation message
joioi.cpp: In function 'int solve()':
joioi.cpp:43:29: warning: unused variable 'ans' [-Wunused-variable]
int lo = 0, hi = mx - mn, ans;
^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |