#include "doll.h"
#include <vector>
#include <stdio.h>
using namespace std;
int con[1000005]={0};
int This[1000005]={0};
int m[1000005];
int n[1000005];
int start[1000005]={0};
vector < int > C,x,y;
int X[1000005]={0};
int Y[1000005]={0};
int now=1;
int t[1000005]={0};
int how[1000005]={0};
void build(int N,int here,int ok)
{
if(ok)
{
X[-here]=ok;
Y[-here]=(-now);
now++;
build(N,Y[-here],0);
}
else if(N==2)
{
X[-here]=0;
Y[-here]=0;
}
else if(N==1)
{
X[-here]=here;
Y[-here]=0;
}
else if(N%2==0)
{
X[-here]=(-now);
now++;
Y[-here]=(-now);
now++;
build(N/2,X[-here],0);
build(N/2,Y[-here],0);
}
else
{
X[-here]=(-now);
now++;
Y[-here]=(-now);
now++;
build(N/2,X[-here],here);
build(N/2+1,Y[-here],0);
}
}
void New(int here,int what)
{
if(how[-here]%2==0)
{
how[-here]++;
if(X[-here]) New(X[-here],what);
else X[-here]=what;
}
else
{
how[-here]++;
if(Y[-here]) New(Y[-here],what);
else Y[-here]=what;
}
}
void create_circuit(int M, vector < int > A)
{
int N=A.size(),i,temp;
C.push_back(A[0]);
for(i=1;i<=M;i++) C.push_back(i);
for(i=0;i<N;i++) con[A[i]]++;
A.push_back(0);
now++;
build(N,-1,0);
for(i=0;i<N;i++)
{
C[A[i]]=-1;
New(C[A[i]],A[i+1]);
}
//printf("a %d\n",now-1);
//for(auto i:C) printf("%d ",i);
//printf("\n");
//for(i=1;i<now;i++) printf("%d %d\n",X[i],Y[i]);
for(i=1;i<now;i++) x.push_back(X[i]);
for(i=1;i<now;i++) y.push_back(Y[i]);
answer(C,x,y);
}
Compilation message
doll.cpp: In function 'void create_circuit(int, std::vector<int>)':
doll.cpp:76:22: warning: unused variable 'temp' [-Wunused-variable]
76 | int N=A.size(),i,temp;
| ^~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
3 ms |
332 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
3 ms |
332 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
3 ms |
332 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
204 KB |
Output is correct |
2 |
Correct |
1 ms |
204 KB |
Output is correct |
3 |
Correct |
1 ms |
204 KB |
Output is correct |
4 |
Correct |
1 ms |
204 KB |
Output is correct |
5 |
Correct |
1 ms |
204 KB |
Output is correct |
6 |
Correct |
1 ms |
204 KB |
Output is correct |
7 |
Correct |
1 ms |
204 KB |
Output is correct |
8 |
Correct |
1 ms |
204 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1060 ms |
204 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1060 ms |
204 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |