# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1084585 | SamueleVid | 드문 곤충 (IOI22_insects) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
constexpr int MAXN = 1e5 + 5;
vector<int> adj[MAXN];
bool v[MAXN];
bool ciclo = 0;
int dfs(int u, int p) {
if (v[u]) ciclo = 1;
v[u] = 1;
bool tolto_p = 0;
for (auto x : adj[u]) {
if (x == p && !tolto_p) {
tolto_p = 1;
continue;
}
dfs(x, u);
}
}
variant<bool, vector<int>> find_journey(int N, int M, vector<int> U, vector<int> V) {
fill(v, v + MAXN, 0);
for (int i = 0; i < M; i ++) {
adj[U[i]].push_back(V[i]);
}
dfs(0, -1);
return ciclo;
}