[AHOI2008]MEET 紧急集合 模板题,容易得到集合点一定在之间。 所以我们只要求出三者的然后求一个总距离最小值去更新答案即可。 树链剖分求也算是倍增吧! /* Author : lifehappy */ #include <bits/stdc++.h> using namespace std; const int N = 1e6 + 10; int head[N], to[N], nex[N], cnt = 1; int fa[N], top[N], son[N], sz[N], dep[N]; int n, m; void add(int x, int ...