枚举上界和下界用判断连通,复杂度 枚举下界,上界可以二分,理论复杂度似乎能冲...但是T了 枚举下界,然后使用并查集动态加入边判断连通,复杂度,可以通过 枚举下界,使用取每个点最优(小)的上界。但是不知道可不可以,没试过 #include <bits/stdc++.h> using namespace std; const int maxn = 2e5+10; struct edge { int l,r,w; }d[maxn]; int mu,zi,n,m,s,t,pre[maxn]; double ans = 1e9; int gcd(int a,int b){ retu...