# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
226684 | DS007 | The Kingdom of JOIOI (JOI17_joioi) | C++14 | 1589 ms | 58884 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;
#define int long long
const int H = 2000;
int a[H][H];
int h, w, mi, ma;
void pre() {
mi = 1e18, ma = -1;
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++)
mi = min(mi, a[i][j]), ma = max(ma, a[i][j]);
}
}
bool check(int dif) {
int ll = mi + dif + 1, ul = ma - dif - 1;
bool track[h][w] = {};
for (int i = 0; i < h; i++) {
for (int j = 0; j < w; j++) {
if (a[i][j] >= ll)
track[i][j] = true;
}
}
for (int i = 0; i < h; i++) {
int li = w, hi = -1;
for (int j = 0; j < w; j++) {
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |