点分治套cdq分治维护斜率优化dp
#include<bits/stdc++.h>
#define rep(i,k,n) for(int i=k;i<=(n);i++)
#define rep2(i,k,n) for(int i=k;i>=(n);i--)
#define inf 0x7f7f7f7f7f7f7f7full
using namespace std;
typedef long long ll;
const int N=200005;
struct E{
int to,next;ll w;
E(int to=0,int next=0,ll w=0):to(to),next(next),w(w){}
}edge[N];
int head[N],tot=0;
void add(int x,int y,ll w){
edge[++tot]=E(y,head[x],w);head[x]=tot;
}
int n,T,fa[N],mx[N],sz[N],vis[N],root,Sum,tt=0;
ll dis[N],d[N],p[N],L[N],q[N];
void getdis(int x){
for(int i=head[x];i;i=edge[i].next){
int v=edge[i].to;ll w=edge[i].w;
dis[v]=dis[x]+w;
getdis(v);
}
}
void getroot(