# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
119830 | keko37 | Meetings (JOI19_meetings) | C++14 | 16 ms | 512 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>
#include "meetings.h"
using namespace std;
int n;
void rjesi (vector <int> v) {
if (v.size() < 2) return;
random_shuffle(v.begin(), v.end());
int a = v[0], b = v[1];
vector <int> lef, rig;
lef.push_back(a); rig.push_back(b);
for (int i=2; i<v.size(); i++) {
int val = Query(a, b, v[i]);
if (val == a) {
lef.push_back(v[i]);
} else if (val == b) {
rig.push_back(v[i]);
} else {
if (lef.size() < rig.size()) {
a = val;
lef.push_back(a);
} else {
b = val;
rig.push_back(b);
}
}
}
if (a > b) swap(a, b);
Bridge(a, b);
rjesi(lef);
rjesi(rig);
}
void Solve (int N) {
n = N;
vector <int> e;
for (int i=0; i<n; i++) {
e.push_back(i);
}
rjesi(e);
}
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |