diff --git a/Graph/lca.cpp b/Graph/lca.cpp index 70a9e3e42..a69a1a5b3 100644 --- a/Graph/lca.cpp +++ b/Graph/lca.cpp @@ -9,7 +9,7 @@ const int LG = log2(N) + 1; struct lca { int n; - vector < int > adj[N]; // Graph + vector adj[N]; // Graph int up[LG][N]; // build this table int level[N]; // get the levels of all of them