// speedrun_brute_tinca.cpp
#include <bits/stdc++.h>
#include "speedrun.h"
void assignHints(int subtask, int N, int A[], int B[]) {
setHintLen(N);
for (int i = 1; i <= N - 1; ++i) {
setHint(A[i], B[i], true);
setHint(B[i], A[i], true);
}
}
void dfs(int node, int l, int father = 0) {
for (int i = 1; i <= l; ++i) {
if (i != father && getHint(i)) {
goTo(i);
dfs(i, l, node);
goTo(node);
}
}
}
void speedrun(int subtask, int N, int start) {
dfs(start, getLength());
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
44 ms |
764 KB |
Output is correct |
2 |
Correct |
56 ms |
776 KB |
Output is correct |
3 |
Correct |
54 ms |
772 KB |
Output is correct |
4 |
Correct |
38 ms |
784 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
328 KB |
The length is too large |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
328 KB |
The length is too large |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
328 KB |
The length is too large |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
388 KB |
The length is too large |
2 |
Halted |
0 ms |
0 KB |
- |