1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
| #include<bits/stdc++.h> #define Tp template<typename Ty> #define Ts template<typename Ty,typename... Ar> #define W while #define I inline #define RI register int #define LL long long #define Cn const #define CI Cn int& #define gc getchar #define D isdigit(c=gc()) #define pc(c) putchar((c)) using namespace std; namespace Debug{ Tp I void _debug(Cn char* f,Ty t){cerr<<f<<'='<<t<<endl;} Ts I void _debug(Cn char* f,Ty x,Ar... y){W(*f!=',') cerr<<*f++;cerr<<'='<<x<<",";_debug(f+1,y...);} Tp ostream& operator<<(ostream& os,Cn vector<Ty>& V){os<<"[";for(Cn auto& vv:V) os<<vv<<",";os<<"]";return os;} #define gdb(...) _debug(#__VA_ARGS__,__VA_ARGS__) }using namespace Debug; namespace FastIO{ Tp I void read(Ty& x){char c;int f=1;x=0;W(!D) f=c^'-'?1:-1;W(x=(x<<3)+(x<<1)+(c&15),D);x*=f;} Ts I void read(Ty& x,Ar&... y){read(x),read(y...);} Tp I void write(Ty x){x<0&&(pc('-'),x=-x,0),x<10?(pc(x+'0'),0):(write(x/10),pc(x%10+'0'),0);} Tp I void writeln(Cn Ty& x){write(x),pc('\n');} }using namespace FastIO; Cn int N=1e5+10,LG=18; int n,m,f[N][LG+5],dep[N],dfn[N],cnt,rt[N];LL Ans; I int lca(RI x,RI y){ RI i;for(dep[x]<dep[y]&&(swap(x,y),0),i=LG;~i;i--) if(dep[f[x][i]]>=dep[y]) x=f[x][i]; if(x==y) return x;for(i=LG;~i;i--) if(f[x][i]^f[y][i]) x=f[x][i],y=f[y][i];return f[x][0]; } class SegmentTree{ private: #define mid (l+r>>1) int ct;struct node{int T,G,l,r,S[2];}T[N*LG<<2]; I void PU(CI x){ T[x].G=T[T[x].S[0]].G+T[T[x].S[1]].G-dep[lca(T[T[x].S[0]].r,T[T[x].S[1]].l)]; T[x].l=T[T[x].S[0]].l?T[T[x].S[0]].l:T[T[x].S[1]].l; T[x].r=T[T[x].S[1]].r?T[T[x].S[1]].r:T[T[x].S[0]].r; } public: I void U(int& x,CI p,CI v,CI l=1,CI r=n){ if(!x&&(x=++ct),l==r) return (T[x].T+=v)?T[x].G=dep[T[x].l=T[x].r=p]:T[x].G=T[x].l=T[x].r=0,void(); dfn[p]<=mid?U(T[x].S[0],p,v,l,mid):U(T[x].S[1],p,v,mid+1,r),PU(x); } I void M(int& x,CI y,CI l=1,CI r=n){ if(!x||!y) return (void)(x+=y); if(l==r) return (void)(T[x].T+=T[y].T,T[x].G|=T[y].G,T[x].l|=T[y].l,T[x].r|=T[y].r); M(T[x].S[0],T[y].S[0],l,mid),M(T[x].S[1],T[y].S[1],mid+1,r),PU(x); } I int Q(CI x){return T[x].G-dep[lca(T[x].l,T[x].r)];} }T; vector<int> G[N],w[N]; #define pb push_back I void DFS(CI x=1,CI fa=0){dfn[x]=++cnt,dep[x]=dep[f[x][0]=fa]+1;for(auto i:G[x]) i^fa&&(DFS(i,x),0);} I void U(CI x,CI y){ T.U(rt[x],x,1),T.U(rt[x],y,1),T.U(rt[y],x,1),T.U(rt[y],y,1);RI z=lca(x,y); w[z].pb(x),w[z].pb(y),f[z][0]&&(w[f[z][0]].pb(x),w[f[z][0]].pb(y),0); } I void Q(CI x=1,CI fa=0){ for(auto i:G[x]) i^fa&&(Q(i,x),T.M(rt[x],rt[i]),0); for(auto i:w[x]) T.U(rt[x],i,-1);Ans+=T.Q(rt[x]); } int main(){ RI i,j,x,y;for(read(n,m),i=1;i<n;i++) read(x,y),G[x].pb(y),G[y].pb(x); for(DFS(),j=1;j<=LG;j++) for(i=1;i<=n;i++) f[i][j]=f[f[i][j-1]][j-1]; for(i=1;i<=m;i++) read(x,y),U(x,y);return Q(),writeln(Ans>>1),0; }
|