From ae701243c2fa6c94fdeecc6535407c90e15b05de Mon Sep 17 00:00:00 2001 From: John Law Date: Wed, 9 Oct 2019 00:02:49 +0800 Subject: [PATCH] Update lca.cpp --- Graph/lca.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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