Skip to content

Instantly share code, notes, and snippets.

@Hacv16
Last active August 27, 2023 00:14
Show Gist options
  • Save Hacv16/76e6066b0d62bfc1e2a6c7455c720338 to your computer and use it in GitHub Desktop.
Save Hacv16/76e6066b0d62bfc1e2a6c7455c720338 to your computer and use it in GitHub Desktop.
int timer, tin[MAXN], tout[MAXN];
void dfs(int u, int p)
{
tin[u] = ++timer;
for(auto v : adj[u])
{
if(v == p) continue;
dfs(v, u);
}
tout[u] = timer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment