AcWing 3555. 二叉树 DFS LCA

#include <bits/stdc++.h>
using namespace std;
const int N = 1010;
int n, m;
int l[N], r[N], p[N], d[N];//左、右、父、深度

//获取各结点的深度
void dfs(int root, int depth)
{
    if(root == -1) return;
    d[root] = depth;
    dfs(l[root], depth+1);
    dfs(r[root], depth+1);
}

//获取两个结点的最近公共祖先
int getParent(int x1, int x2)
{
    if(d[x1] < d[x2]) return getParent(x2, x1);//维护x1为较深的那个
    while(d[x1] > d[x2]) x1 = p[x1];//x1往上走, 直到与x2深度相同
    while(x1 != x2) x1 = p[x1], x2 = p[x2]; //同时往上走, 直到两结点相同
    return x1;
}

int main() {

    int t; cin >> t;
    while ( t -- )
    {
        cin >> n >> m;
        for(int i=1; i<=n; i++)
        {
            int left, right;
            cin >> left >> right;
            l[i] = left, r[i] = right;
            if(left != -1) p[left] = i;
            if(right != -1) p[right] = i;
        }
        dfs(1, 1);//从根结点1开始遍历, 获取深度

        int x1, x2;
        while( m -- )
        {
            cin >> x1 >> x2;
            int parent = getParent(x1, x2);
            cout << d[x1] + d[x2] - 2 * d[parent] << endl;
        }
    }

    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值