POJ-3723-Conscription

最小生成树模板题目

#include
#include
#include
#include
using namespace std;
const int maxn=50010;
int fa[maxn];
struct edge
{
    int x,y,w;
}e[maxn];
bool cmp(edge a,edge b)
{
    return b.w

你可能感兴趣的:(最小生成树)