# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
838053 | tolbi | 자동 인형 (IOI18_doll) | C++17 | 120 ms | 14444 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "doll.h"
#include <bits/stdc++.h>
using namespace std;
#define coutarr(x) for(auto &it : x) cout<<it<<" ";cout<<endl;
#define tol(bi) (1LL<<((long long)(bi)))
void create_circuit(int M, vector<int> A) {
int n = A.size();
vector<int> X(tol(ceil(log2(n+1)))-1);
vector<int> Y(X.size());
int S = X.size();
int cnt = n;
for (int i = 0; i < S; i++){
X[i]=(i+1)*2;
Y[i]=(i+1)*2+1;
if (X[i]>S){
if (cnt) X[i]=n+1-(cnt--);
else X[i]=-1;
}
else X[i]=-X[i];
if (Y[i]>S){
if (cnt) Y[i]=n+1-(cnt--);
else Y[i]=-1;
}
else Y[i]=-Y[i];
}
Y.back()=0;
vector<bool> gerekli(S,false);
for (int i = S-1; i >= 0; i--){
if (X[i]>=0 || Y[i]>=0 || (X[i]<0 && Y[i]<0 && (gerekli[(-X[i])-1] || gerekli[(-Y[i])-1]))) gerekli[i]=true;
}
cnt=1;
vector<int> gercek(S,-1);
vector<int> x;
vector<int> y;
for (int i = 0; i < S; ++i)
{
if (gerekli[i]){
gercek[i]=cnt++;
}
}
for (int i = 0; i < S; i++){
if (!gerekli[i]) continue;
if (X[i]>=-1){
x.push_back(X[i]);
y.push_back(Y[i]);
continue;
}
int xv = gercek[(-X[i])-1];
int yv = gercek[(-Y[i])-1];
if (xv!=-1) xv=-xv;
if (yv!=-1) yv=-yv;
x.push_back(xv);
y.push_back(yv);
}
vector<int> C(M+1,-1);
vector<int> gez;
int node = -1;
vector<int> state(S,0);
while (gez.size()<n){
if (node>=0){
gez.push_back(node);
node=-1;
}
else {
node=-node-1;
if (state[node]==0) state[node]=1;
else state[node]=0;
if (state[node]==1){
node=x[node];
}
else node=y[node];
}
}
vector<int> val(n+1);
for (int i = 0; i < n; ++i)
{
val[gez[i]]=A[i];
}
for (int i = 0; i < S; i++){
if (X[i]>0) X[i]=val[X[i]];
if (Y[i]>0) Y[i]=val[Y[i]];
}
answer(C,X,Y);
}
컴파일 시 표준 에러 (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... |