int a[maxn], cnt; boolDfs(int u, int fa){ staticbool vis[maxn] = { 0 }; staticstack<int> S; vis[u] = 1; S.push(u); for (auto v : G[u]) { if (v == fa) continue; if (vis[v]) { int t; do { t = S.top(); S.pop(); a[++cnt] = t; } while (t != v); return1; } if (Dfs(v, u)) return1; } S.pop(); return0; }