码迷,mamicode.com
首页 > 编程语言 > 详细

模板 - 图论 - 最近公共祖先 - 倍增算法 - LCA

时间:2020-02-16 12:55:01      阅读:72      评论:0      收藏:0      [点我收藏+]

标签:class   ++   --   cto   continue   code   turn   void   i++   

const int MAX = 100000;
vector <int> G[MAXN + 5];
int dep[MAXN + 5], fa[MAXN + 5][20 + 1];

void dfs(int u, int p) {
    dep[u] = depth[p] + 1;
    fa[u][0] = p;
    for (int i = 1; i <= 20; i++)
        fa[u][i] = fa[fa[u][i - 1]][i - 1];
    for(auto &v : G[u]) {
        if(v == p)
            continue;
        dfs(v, u);
    }
}

int LCA(int x, int y) {
    if (dep[x] < dep[y])
        swap(x, y);
    for (int i = 20; i >= 0; i--)
        if (dep[x] - (1 << i) >= dep[y])
            x = fa[x][i];
    if (x == y)
        return x;
    for (int i = 20; i >= 0; i--)
        if (fa[x][i] != fa[y][i])
            x = fa[x][i], y = fa[y][i];
    return fa[x][0];
}

模板 - 图论 - 最近公共祖先 - 倍增算法 - LCA

标签:class   ++   --   cto   continue   code   turn   void   i++   

原文地址:https://www.cnblogs.com/KisekiPurin2019/p/12316367.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!