# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
61125 | gusfring | The Kingdom of JOIOI (JOI17_joioi) | C++14 | 2 ms | 376 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
const int N = 2005;
int n, m, mn = 1e9, a[N][N], b[N][N], f[N];
bool check0(int x){
f[0] = 1e9;
int mn, mx;
mn = 1e9, mx = 0;
for(int i = 1; i <= n; ++i){
int mx = 0; f[i] = 0;
for(int j = 1; j <= m; ++j){
mx = max(mx, b[i][j]);
if(mx - mn > x) break;
f[i]++;
}
f[i] = min(f[i], f[i - 1]);
for(int j = f[i] + 1; j <= m; ++j){
mn = min(mn, b[i][j]);
mx = max(mx, b[i][j]);
}
}
return mx - mn <= x;
}
bool check1(int x){
bool ok = 0;
for (int i = 1; i <= n; ++i){
for (int j = 1; j <= m; ++j){
b[i][j] = a[i][j];
}
}
ok |= check0(x);
for (int i = 1; i <= n; ++i){
for (int j = 1; j <= m; ++j){
b[i][j] = a[i][m - j + 1];
}
}
ok |= check0(x);
for (int i = 1; i <= n; ++i){
for (int j = 1; j <= m; ++j){
b[i][j] = a[n - i + 1][j];
}
}
ok |= check0(x);
for (int i = 1; i <= n; ++i){
for (int j = 1; j <= m; ++j){
b[i][j] = a[n - i + 1][m - j + 1];
}
}
ok |= check0(x);
return ok;
}
int main() {
scanf("%d %d", &n, &m);
for (int i = 1; i <= n; ++i) {
for (int j = 1; j <= m; ++j) {
scanf("%d", &a[i][j]); mn = min(mn, a[i][j]);
}
}
int l = 0, r = 1e9;
while (l < r) {
int mid = (l + r) >> 1;
if (check1(mid)) r = mid;
else l = mid + 1;
}
cout << l;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |