Submission #1086129

#TimeUsernameProblemLanguageResultExecution timeMemory
1086129SamueleVidThousands Islands (IOI22_islands)C++17
0 / 100
23 ms7992 KiB
#include <bits/stdc++.h> using namespace std; constexpr int MAXN = 1e5 + 5; vector<int> adj[MAXN]; bool v[MAXN]; bool ciclo = 0; void dfs(int u) { // cout << "u, p " << u << " " << p << '\n'; // toposort: is there a cycle ? if (v[u] == 2) return; if (v[u] == 1) { ciclo = 1; return; } v[u] = 1; for (auto x : adj[u]) { dfs(x); if (ciclo) return; } v[u] = 2; } 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]); // no stesso arco sennò diventa non lineare sui nodi } dfs(0); return true; }

Compilation message (stderr)

islands.cpp: In function 'void dfs(int)':
islands.cpp:13:14: warning: comparison of constant '2' with boolean expression is always false [-Wbool-compare]
   13 |     if (v[u] == 2) return;
      |         ~~~~~^~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...