洛谷题单<最小生成树> 直接上代码 #include<bits/stdc++.h> using namespace std;//prim kruskal 都可以做; const int N = 5010, M = 200010; struct edge{ int a, b, c; bool operator<(const edge& w)const{ return c < w.c; } }edges[M]; int n, m, p[N], cnt; //并查集; int find(int x){//...