| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 979646 | Pannda | Chameleon's Love (JOI20_chameleon) | C++14 | 22 ms | 796 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 "chameleon.h"
#include <bits/stdc++.h>
using namespace std;
void Solve(int n) {
auto query = [&](vector<int> p) -> int {
for (int &i : p) i++;
return Query(p);
};
auto answer = [&](int i, int j) -> void {
Answer(i + 1, j + 1);
};
auto sum = [&](vector<int> a, vector<int> b) -> vector<int> {
a.insert(a.end(), b.begin(), b.end());
return a;
};
vector<int> p0, p1;
for (int u = 0; u < 2 * n; u++) {
if (query(sum(p0, {u})) == p0.size() + 1) {
p0.push_back(u);
} else {
p1.push_back(u);
}
}
vector<vector<int>> adj(2 * n);
for (int u : p0) {
auto dfs = [&](auto self, int l, int r) -> void {
if (query(sum(vector<int>(p1.begin() + l, p1.begin() + r), {u})) == r - l + 1) return;
if (l + 1 == r) {
adj[u].push_back(p1[l]);
adj[p1[l]].push_back(u);
} else {
int m = (l + r) >> 1;
self(self, l, m);
self(self, m, r);
}
};
dfs(dfs, 0, p1.size());
}
for (int u = 0; u < 2 * n; u++) {
for (int i = 0; i < 3 && adj[u].size() == 3; i++) {
for (int j = i + 1; j < 3 && adj[u].size() == 3; j++) {
if (query({u, adj[u][i], adj[u][j]}) == 1) {
adj[u] = {adj[u][i], adj[u][j]};
}
}
}
}
for (int u : p0) {
for (int v : adj[u]) {
if (find(adj[v].begin(), adj[v].end(), u) != adj[v].end()) {
answer(u, v);
}
}
}
}
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... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
