#include <bits/stdc++.h>
#include<speedrun.h>
using namespace std;
const int NMAX = 1e3;
const int BITS = 20, HALF = 10;
const int ROOT = 1, NONE = 0;
int par[1 + NMAX];
vector<int> tree[1 + NMAX];
int lastNode; int nextPreoder[1 + NMAX];
void DFSassign (int root, int p) {
par[root] = p;
nextPreoder[lastNode] = root; lastNode = root;
for (int node : tree[root])
if (node != p)
DFSassign (node, root);
}
/**bool bits[50][20];
void setHint (int node, int bit, bool value) {
bits[node][bit] = value;
}
bool getHint (int node, int bit) {
return bits[node][bit];
}**/
void assignHints (int substask, int N, int A[], int B[]) {
///setHintLen (BITS);
for (int i = 1; i < N; i ++) {
tree[A[i]].push_back (B[i]);
tree[B[i]].push_back (A[i]);
}
DFSassign (ROOT, NONE);
for (int node = 1; node <= N; node ++)
for (int bit = 0; bit < HALF; bit ++)
if (par[node] & (1 << bit))
setHint (node, bit + 1, true);
for (int node = 1; node <= N; node ++)
for (int bit = HALF; bit < BITS; bit ++)
if (nextPreoder[node] & (1 << (bit - HALF)))
setHint (node, bit + 1, true);
}
int getPar (int node) {
int p = 0;
for (int bit = 0; bit < HALF; bit ++)
if (getHint (bit + 1) == true)
p = p + (1 << bit);
return p;
}
int getNextPreoder (int node) {
int preord = 0;
for (int bit = HALF; bit < BITS; bit ++)
if (getHint (bit + 1) == true)
preord = preord + (1 << (bit - HALF));
return preord;
}
void speedrun (int subtask, int N, int start) {
////int len = getLength ();
///cout << start << " ";
while (start != ROOT)
goTo (getPar (start));
///start = getPar (start), cout << start << " ";
while (getNextPreoder (start) != NONE) {
int target = getNextPreoder (start);
while (getPar (target) != start)
goTo (getPar (start));
///start = getPar (start), cout << start << " ";
goTo (target);
///start = target, cout << start << " ";
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
You must call setLength before you set anything |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
You must call setLength before you set anything |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
You must call setLength before you set anything |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
You must call setLength before you set anything |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
336 KB |
You must call setLength before you set anything |
2 |
Halted |
0 ms |
0 KB |
- |