http://www.lydsy.com/JudgeOnline/problem.php?id=2286 虚树上树形DP #include<cmath> #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> using namespace std; #define N 250001 typedef long long LL; int tot; int n…
建出虚树dp. 把询问点按dfs序排序,用一个以dfs序为关键字的单调栈(以深度为关键字也是一样的),每次将一个询问点与栈顶的点的lca入栈,再将这个询问点入栈,在这个过程中建出一棵树就是虚树.具体看代码. #include<bits/stdc++.h> #define N 250005 using namespace std; typedef long long LL; int n,m,q; struct edge{ edge* s; int v,w; }e[N<<1],*bac…