#include <bits/stdc++.h>
using namespace std;
enum {
EXIT = 2000000,
};
void answer(vector<int> C, vector<int> X, vector<int> Y);
void create_circuit(int M, vector<int> A) {
int N = A.size();
vector<int> C(M + 1);
vector<int> X(2*N),Y(2*N);
vector<vector<int>> nextoccurences(M+1);
A.emplace_back(EXIT);
for(int i=0;i<N;i++)nextoccurences[A[i]].emplace_back(A[i+1]);
int S = 0;
for(int i=1;i<=M;i++){
if(nextoccurences[i].empty())continue;
int siz = 1;
while(nextoccurences[i].size()>siz)siz<<=1;
if(nextoccurences[i].size()==siz)continue;
while(nextoccurences[i].size()<siz-1)nextoccurences[i].emplace_back(-i);
nextoccurences[i].emplace_back(0);
}
int extraneeded = 0;
int head = -1;
pair<bool,int> exitnode;
function<void(int,vector<int>)> calc = [&](int x,vector<int> targets){
if(targets.size()==2){
if(targets[0]==EXIT){
exitnode = {false,-x};
} else if(targets[0]==0){
X[x] = extraneeded;
extraneeded = head;
} else if(targets[0]<0){
X[x] = head;
} else {
X[x] = targets[0];
}
if(targets[1]==EXIT){
exitnode = {true,-x};
} else if(targets[1]==0){
Y[x] = extraneeded;
extraneeded = head;
} else if(targets[1]<0){
Y[x] = head;
} else {
Y[x] = targets[1];
}
} else {
vector<int> odds;
vector<int> evens;
for(int i=0;i<targets.size();i++)
if(i&1)odds.emplace_back(targets[i]);
else evens.emplace_back(targets[i]);
calc(++S,evens);
calc(++S,odds);
}
};
for(int i=1;i<=M;i++){
if(nextoccurences[i].empty())continue;
if(nextoccurences[i].size()==1){
if(nextoccurences[i][0]==EXIT){
exitnode = {false,i};
} else {
C[i] = nextoccurences[i][0];
}
continue;
}
head = -(++S);
C[i]=head;
calc(-head,nextoccurences[i]);
}
if(exitnode.second>0){
C[exitnode.second]=extraneeded;
} else {
if(!exitnode.first)X[-exitnode.second]=extraneeded;
else Y[-exitnode.second]=extraneeded;
}
C[0] = A[0];
X.erase(X.begin());
Y.erase(Y.begin());
X.resize(S);
Y.resize(S);
answer(C, X, Y);
}
Compilation message
doll.cpp: In function 'void create_circuit(int, std::vector<int>)':
doll.cpp:21:39: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
21 | while(nextoccurences[i].size()>siz)siz<<=1;
| ~~~~~~~~~~~~~~~~~~~~~~~~^~~~
doll.cpp:22:36: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
22 | if(nextoccurences[i].size()==siz)continue;
| ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
doll.cpp:23:39: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
23 | while(nextoccurences[i].size()<siz-1)nextoccurences[i].emplace_back(-i);
| ~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~
doll.cpp: In lambda function:
doll.cpp:54:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
54 | for(int i=0;i<targets.size();i++)
| ~^~~~~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
21 ms |
8184 KB |
Output is correct |
3 |
Correct |
14 ms |
6744 KB |
Output is correct |
4 |
Correct |
0 ms |
344 KB |
Output is correct |
5 |
Correct |
7 ms |
3760 KB |
Output is correct |
6 |
Correct |
29 ms |
10032 KB |
Output is correct |
7 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
21 ms |
8184 KB |
Output is correct |
3 |
Correct |
14 ms |
6744 KB |
Output is correct |
4 |
Correct |
0 ms |
344 KB |
Output is correct |
5 |
Correct |
7 ms |
3760 KB |
Output is correct |
6 |
Correct |
29 ms |
10032 KB |
Output is correct |
7 |
Correct |
0 ms |
348 KB |
Output is correct |
8 |
Correct |
29 ms |
9812 KB |
Output is correct |
9 |
Correct |
33 ms |
11348 KB |
Output is correct |
10 |
Correct |
43 ms |
14656 KB |
Output is correct |
11 |
Correct |
1 ms |
348 KB |
Output is correct |
12 |
Correct |
1 ms |
436 KB |
Output is correct |
13 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
21 ms |
8184 KB |
Output is correct |
3 |
Correct |
14 ms |
6744 KB |
Output is correct |
4 |
Correct |
0 ms |
344 KB |
Output is correct |
5 |
Correct |
7 ms |
3760 KB |
Output is correct |
6 |
Correct |
29 ms |
10032 KB |
Output is correct |
7 |
Correct |
0 ms |
348 KB |
Output is correct |
8 |
Correct |
29 ms |
9812 KB |
Output is correct |
9 |
Correct |
33 ms |
11348 KB |
Output is correct |
10 |
Correct |
43 ms |
14656 KB |
Output is correct |
11 |
Correct |
1 ms |
348 KB |
Output is correct |
12 |
Correct |
1 ms |
436 KB |
Output is correct |
13 |
Correct |
0 ms |
348 KB |
Output is correct |
14 |
Incorrect |
56 ms |
13992 KB |
wrong motion |
15 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
wrong motion |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
wrong motion |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
wrong motion |
2 |
Halted |
0 ms |
0 KB |
- |