#include <bits/stdc++.h>
#include "speedrun.h"
using namespace std;
#define MAX_N 100000
int n;
bitset <MAX_N + 1> viz;
void assign1(int n, int a[], int b[])
{
setHintLen(n);
for(int i = 1; i < n; i ++)
{
setHint(a[i], b[i], 1);
setHint(b[i], a[i], 1);
}
}
void assign2and3()
{
}
void assign4()
{
}
void dfs(int node, int parent)
{
viz[node] = 1;
for(int i = 1; i <= n; i ++)
if(getHint(i))
{
goTo(i);
dfs(i, node);
}
goTo(parent);
}
void speedrun1(int N, int root)
{
n = N;
dfs(root, root);
}
void assignHints(int subtask, int N, int A[], int B[])
{
if(subtask == 1)
{
assign1(N, A, B);
}
}
void speedrun(int subtask, int N, int start)
{
if(subtask == 1)
{
speedrun1(N, start);
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
3547 ms |
20548 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
setHintLen was never called |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
setHintLen was never called |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
setHintLen was never called |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
setHintLen was never called |
2 |
Halted |
0 ms |
0 KB |
- |