#include "doll.h"
#include<bits/stdc++.h>
using namespace std;
struct node {
int l = -1, r = -1, y = 0;
};
int timer = 2, dep;
vector<int> x, y;
node tree[500005];
void build(int n, int d) {
if (dep-1 == d) {
return;
}
tree[n].l = -timer;
timer++;
tree[n].r = -timer;
timer++;
build(-tree[n].l, d+1);
build(-tree[n].r, d+1);
}
void create(int n, int d, int v) {
if (dep-1 == d) {
if (tree[n].y == 0) {
tree[n].l = v;
} else {
tree[n].r = v;
}
} else {
if (tree[n].y == 0) {
create(-tree[n].l, d+1, v);
} else {
create(-tree[n].r, d+1, v);
}
}
tree[n].y ^= 1;
}
void create_circuit(int m, vector<int> a) {
vector<int> d(m+1, 0);
a.push_back(0);
vector<set<int>> edges(m+1);
d[0] = a.front();
for (int i = 1; i < a.size(); i++) {
edges[a[i-1]].insert(a[i]);
}
vector<int> c;
for (int i = 0; i < a.size()-1; i++) {
if (edges[a[i]].size() == 0) {
d[a[i]] = 0;
} else if (edges[a[i]].size() == 1) {
d[a[i]] = a[i+1];
} else {
d[a[i]] = -1;
c.push_back(a[i]);
}
}
a = c;
if (!a.empty()) {
int n = a.size(), s;
dep = ceil(log2(n));
s = 1 << dep;
build(1, 0);
for (int i = 1; i < s; i++) {
if (i < n) {
create(1, 0, a[i]);
} else {
create(1, 0, -1);
}
}
create(1, 0, 0);
for (int i = 1; i < s; i++) {
x.push_back(tree[i].l);
y.push_back(tree[i].r);
}
}
answer(d, x, y);
}
Compilation message
doll.cpp: In function 'void create_circuit(int, std::vector<int>)':
doll.cpp:42:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
42 | for (int i = 1; i < a.size(); i++) {
| ~~^~~~~~~~~~
doll.cpp:46:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
46 | for (int i = 0; i < a.size()-1; i++) {
| ~~^~~~~~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
27 ms |
9668 KB |
Output is correct |
3 |
Correct |
20 ms |
7748 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
11 ms |
6236 KB |
Output is correct |
6 |
Correct |
25 ms |
11728 KB |
Output is correct |
7 |
Correct |
1 ms |
344 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
27 ms |
9668 KB |
Output is correct |
3 |
Correct |
20 ms |
7748 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
11 ms |
6236 KB |
Output is correct |
6 |
Correct |
25 ms |
11728 KB |
Output is correct |
7 |
Correct |
1 ms |
344 KB |
Output is correct |
8 |
Incorrect |
82 ms |
16624 KB |
wrong motion |
9 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
27 ms |
9668 KB |
Output is correct |
3 |
Correct |
20 ms |
7748 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
11 ms |
6236 KB |
Output is correct |
6 |
Correct |
25 ms |
11728 KB |
Output is correct |
7 |
Correct |
1 ms |
344 KB |
Output is correct |
8 |
Incorrect |
82 ms |
16624 KB |
wrong motion |
9 |
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 |
Partially correct |
0 ms |
348 KB |
Output is partially correct |
2 |
Correct |
58 ms |
7888 KB |
Output is correct |
3 |
Partially correct |
95 ms |
11260 KB |
Output is partially correct |
4 |
Partially correct |
101 ms |
12268 KB |
Output is partially correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Partially correct |
0 ms |
348 KB |
Output is partially correct |
2 |
Correct |
58 ms |
7888 KB |
Output is correct |
3 |
Partially correct |
95 ms |
11260 KB |
Output is partially correct |
4 |
Partially correct |
101 ms |
12268 KB |
Output is partially correct |
5 |
Partially correct |
149 ms |
23744 KB |
Output is partially correct |
6 |
Partially correct |
146 ms |
22680 KB |
Output is partially correct |
7 |
Partially correct |
134 ms |
22960 KB |
Output is partially correct |
8 |
Partially correct |
134 ms |
23076 KB |
Output is partially correct |
9 |
Partially correct |
91 ms |
11260 KB |
Output is partially correct |
10 |
Incorrect |
109 ms |
15876 KB |
wrong motion |
11 |
Halted |
0 ms |
0 KB |
- |