# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
294548 | Dovran | 자동 인형 (IOI18_doll) | C++11 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "doll.h"
#define N 200009
#define pii pair <int, int>
#define ff first
#define ss second
#define pb push_back
#define ll long long
using namespace std;
ll n, c[N];
void create_circuit(int m, vector<int>a){
n=a.size();
vector<ll>e, b;
ll x=0;
for(int i=0; i<n; i++)
c[x]=a[i], x=a[i];
for(int i=0; i<m; i++)
if(!c[i])
c[x]=i, x=i;
c[x]=0;
for(int i=0; i<=m; i++)
e.pb(c[i]);
answer(e, b, b);
}