diff options
| -rw-r--r-- | graph/LCA.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graph/LCA.cpp b/graph/LCA.cpp index da3b5f7..67a4f3b 100644 --- a/graph/LCA.cpp +++ b/graph/LCA.cpp @@ -15,4 +15,4 @@ void initLCA(int gi, int d, int &c) { int getLCA(int a, int b) { return visited[queryRMQ(min(first[a], first[b]), max(first[a], first[b]))]; } -//=> int c = 0; initLCA(0,0,c); initRMQ(); done! +//=> int c = 0; initLCA(0,0,c); initRMQ(); done! [rmq on depth] |
