# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
982712 | alo_54 | 게임 (APIO22_game) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//#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)
{
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;
}
int main()
{
int n, k, m; cin>>n>>k>>m;
init(n, k);
while (m--)
{
int u, v; cin>>u>>v;
int resp = add_teleporter(u, v);
cout<<resp<<endl;
}
}