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>
#define pb push_back
#define f first
#define sc second
using namespace std;
typedef long long int ll;
typedef string str;
const int inf = 1e7;
void create_circuit(int m, vector<int> A){
int n = A.size();
int k = 1;
while(k < n) k*=2;
vector<int> sth(2*k, -2);
vector<pair<int, int>> candidates;
for(int i = k; i < 2*k; i++){
int j = i, pos = 0;
while(j != 1){
if(j&1) pos++;
pos<<=1;
j>>=1;
}
pos>>=1;
if(2*k-i-1 < n) candidates.pb({pos, i});
sth[i] = -1;
}
sort(candidates.begin(), candidates.end());
for(int i = 1; i < n; i++) sth[candidates[i-1].sc] = A[i];
sth[candidates.back().sc] = 0;
vector<int> C(m+1, -1), X, Y;
C[0] = A[0];
for(int i = k-1; i >= 1; i--){
if(sth[2*i] == -1 && sth[2*i+1] == -1) sth[i] = -1;
}
function<int(int)> rec = [&](int i){
X.pb(0), Y.pb(0);
int j = X.size();
if(sth[2*i] == -1) X[j-1] = -1;
else if(sth[2*i] >= 0) X[j-1] = sth[2*i];
else X[j-1] = rec(2*i);
if(sth[2*i+1] == -1) Y[j-1] = -1;
else if(sth[2*i+1] >= 0) Y[j-1] = sth[2*i+1];
else Y[j-1] = rec(2*i+1);
return -j;
};
rec(1);
answer(C, X, Y);
}
# | 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... |