# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
294541 | Dovran | Mechanical Doll (IOI18_doll) | C++11 | 0 ms | 0 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 <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;
int n, c[N];
void create_circuit(int m, vector<int>a){
n=a.size();
vector<int>e, b;
int x=0, vis[N];
for(auto i:a)
vis[a]=1;
for(int i=0; i<m; i++)
if(!vis[i])
c[x]=i, x=i;
for(int i=0; i<n-1; i++)
c[x]=a[i], x=a[i];
c[x]=0;
for(int i=0; i<=m; i++)
e.pb(c[i]);
answer(e, b, b);
}