题目:
题解:
我用的是二分+点分治的方法
二分m大的路径长度,得到下界以后显然是一个nlog^2n的经典点分治,加上二分的log,显然比较虚。但是点分治中有一个log是sort需要的,我们就可以先一次点分治把sort的结果用vector存下来,这样的话就能把总复杂度降为nlog^2,得到m大的路径最后一次点分治暴力统计路径。总复杂度是O(nlog^2n)的,但不知道是不是map和vector的问题,我常数贼大,然后就T了?!
下面是TLE代码,我觉得复杂度是对的,但是求正解的盆友不要看了。
但是这道题STL的用法很好,所以即使T了还是想着码一下
代码:
#include <map>
#include <cstdio>
#include <vector>
#include <cstring>
#include <iostream>
#include <algorithm>
#define INF 1e9
using namespace std;
const int N=50005;
const int NN=300005;
int n,tot,nxt[N*2],point[N],v[N*2],c[N*2],size[N],f[N],root,num,k,m,sum,len[N],dis[N],mid,id,game[NN],ans,vis[N],ID;
vector