#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 p = 0;
for (int bit = 0; bit < HALF; bit ++)
if (getHint (bit + 1) == true)
p = p + (1 << bit);
return p;
}
int getNextPreoder () {
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) {
getLength ();
while (getPar () > 0)
goTo (getPar ());
while (getNextPreoder () != NONE) {
int target = getNextPreoder ();
while (!goTo (target))
goTo (getPar ());
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
76 ms |
720 KB |
Output is correct |
2 |
Correct |
104 ms |
672 KB |
Output is correct |
3 |
Correct |
119 ms |
684 KB |
Output is correct |
4 |
Correct |
138 ms |
712 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
78 ms |
732 KB |
Output is correct |
2 |
Correct |
95 ms |
724 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
94 ms |
672 KB |
Output is correct |
2 |
Correct |
101 ms |
672 KB |
Output is correct |
3 |
Correct |
112 ms |
716 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
96 ms |
672 KB |
Output is correct |
2 |
Correct |
137 ms |
708 KB |
Output is correct |
3 |
Correct |
80 ms |
760 KB |
Output is correct |
4 |
Correct |
111 ms |
792 KB |
Output is correct |
5 |
Correct |
128 ms |
684 KB |
Output is correct |
6 |
Correct |
125 ms |
812 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
96 ms |
844 KB |
Output is correct |
2 |
Correct |
124 ms |
672 KB |
Output is correct |
3 |
Correct |
113 ms |
716 KB |
Output is correct |
4 |
Correct |
99 ms |
676 KB |
Output is correct |
5 |
Correct |
118 ms |
728 KB |
Output is correct |
6 |
Correct |
124 ms |
728 KB |
Output is correct |
7 |
Correct |
106 ms |
712 KB |
Output is correct |