HDU-1233-还是畅通工程

裸的最小生成树~

代码:

#include
#include
#include
#include
using namespace std;
const int maxn=5501;
struct Edge
{
    int u;
    int v;
    int cost;
    bool operator <(const Edge &a)const
    {
	return cost


你可能感兴趣的:(ACM,HDU)