#include "game.h"
#include <bits/stdc++.h>
using namespace std;
struct Nodo
{
vector <int> ady;
bool special = false;
};
vector <Nodo> g;
int dfs(int node, int target, bool isSpecial)
{
//cout<<"call "<<node<<" "<<target<<endl;
if (node == target )
{
if (isSpecial or g[node].special)
{
return 1;
}
return 0;
}
if (g[node].special)
{
isSpecial = true;
}
for (auto i : g[node].ady)
{
if (dfs(i, target, isSpecial) == 1)
{
return 1;
}
}
return 0;
}
void init(int n, int k)
{
g.resize(n);
for (int i = 0; i < n; i++)
{
g[i].special = false;
}
for (int i = 0; i < k; i++)
{
g[i].special = true;
if (i != k - 1)
{
g[i].ady.push_back(i + 1);
}
}
}
int add_teleporter(int u, int v)
{
g[u].ady.push_back(v);
int resp = 0;
resp = dfs(v, u, false);
return resp;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Execution timed out |
4083 ms |
344 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Execution timed out |
4083 ms |
344 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Execution timed out |
4083 ms |
344 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Execution timed out |
4083 ms |
344 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
344 KB |
Output is correct |
3 |
Execution timed out |
4083 ms |
344 KB |
Time limit exceeded |
4 |
Halted |
0 ms |
0 KB |
- |