#include <bits/stdc++.h>
#include "speedrun.h"
using namespace std;
bool vis[10000];
void dfs(int x, int p, int N) {
vis[x] = true;
for(int i=1; i<=N; i++) {
if(getHint(i) && !vis[i]) {
goTo(i);
dfs(i, x, N);
}
}
goTo(p);
}
void assignHints(int subtask, int N, int A[], int B[]) {
setHintLen(N);
for(int i=1; i<N; i++) {
setHint(A[i], B[i], true);
setHint(B[i], A[i], true);
}
}
void speedrun(int subtask, int N, int start) {
dfs(start, start, N);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
22 ms |
1212 KB |
Output is correct |
2 |
Correct |
23 ms |
1288 KB |
Output is correct |
3 |
Correct |
22 ms |
1288 KB |
Output is correct |
4 |
Correct |
21 ms |
1692 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
The length is too large |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
The length is too large |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
The length is too large |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
The length is too large |
2 |
Halted |
0 ms |
0 KB |
- |