# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
61127 | gusfring | The Kingdom of JOIOI (JOI17_joioi) | C++14 | 2489 ms | 263168 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) {
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... |