# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
784803 | QwertyPi | Mechanical Doll (IOI18_doll) | C++14 | 1081 ms | 20680 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 "doll.h"
#include <bits/stdc++.h>
const int SLOT = 1234567;
using namespace std;
int S = 0;
map<int, int> MX, MY;
map<int, bool> T;
int build(int lv, int n){
if(n == 0) return 0;
if(lv == 0) return SLOT;
int sr = min(n, 1 << lv - 1), sl = n - sr;
int vl = build(lv - 1, sl);
int vr = build(lv - 1, sr);
int v = --S;
MX[v] = vl, MY[v] = vr;
return v;
}
void create_circuit(int M, vector<int> A) {
A.push_back(0);
int N = A.size();
std::vector<int> C(M + 1);
int level = 0; int x = N; while(x > (1 << level)) level++;
build(level, N);
int root = S;
C[0] = root;
for (int i = 1; i <= M; ++i) {
C[i] = root;
}
for(auto& [a, b] : MX) if(b == 0) b = root;
for(auto& [a, b] : MY) if(b == 0) b = root;
for(auto i : MX) T[i.first] = 0;
int cur = 0, filled = 0;
while(filled < N){
if(cur >= 0) cur = C[cur];
else {
if(T[cur] && MY[cur] == SLOT) MY[cur] = A[filled++];
if(!T[cur] && MX[cur] == SLOT) MX[cur] = A[filled++];
int nxt = T[cur] ? MY[cur] : MX[cur]; T[cur] ^= 1;
cur = nxt;
}
}
std::vector<int> X(MX.size()), Y(MY.size());
for (int k = 0; k < MX.size(); ++k) {
X[k] = MX[-k - 1], Y[k] = MY[-k - 1];
}
answer(C, X, Y);
}
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |