# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
829807 | vnm06 | 자동 인형 (IOI18_doll) | C++14 | 91 ms | 11028 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "doll.h"
using namespace std;
bool st2(int n)
{
return n==(n&(-n));
}
vector<int> C, D;
vector<int> X, Y;
int brn=0;
int ty[1000005];
void dfs(int pos)
{
while(1)
{
///cout<<pos<<endl;
if(pos>=0) pos=C[pos];
else
{
if(brn==D.size()) return;
ty[-pos-1]^=1;
if(ty[-pos-1]==1)
{
if(!X[-pos-1])
{
X[-pos-1]=D[brn];
pos=D[brn];
brn++;
}
else pos=X[-pos-1];
}
else
{
if(!Y[-pos-1])
{
Y[-pos-1]=D[brn];
pos=D[brn];
brn++;
}
else pos=Y[-pos-1];
}
}
}
}
void create_circuit(int M, std::vector<int> A)
{
C.resize(M+1);
D=A;
for (int i = 0; i <= M; ++i) C[i]=-1;
int N = A.size();
int brb=1, n2=N;
while(n2!=1)
{
brb++;
n2/=2;
}
///cout<<brb<<endl;
X.resize(N+brb);
Y.resize(N+brb);
int tpos=brb+1;
for(int i=0; i<brb-1; i++)
{
int st2=(1<<(brb-i-1));
///cout<<st2<<" ";
///cout<<tpos<<endl;
if(st2&N)
{
X[i]=-tpos;
Y[i]=-i-2;
for(int j=tpos; j<tpos+st2/2-1; j++)
{
X[j-1]=-(2*(j-tpos+1)+tpos-1);
Y[j-1]=-(2*(j-tpos+1)+tpos);
}
tpos+=st2-1;
}
else
{
X[i]=-1;
Y[i]=-i-2;
}
}
if(N%2==0) {X[brb-1]=-1;}
Y[brb-1]=0;
dfs(0);
X.resize(tpos-1);
Y.resize(tpos-1);
///for(int i=0; i<X.size(); i++) cout<<X[i]<<" "<<Y[i]<<endl;
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... |