poj1861 Kruskal 94ms

看discuss发现样例有问题

#include
#include
#define INF 0x3f3f3f3f
using namespace std;
struct Edge
{
    int l,r;
    int val;
} edge[15055],res[1055];
bool cmp(const Edge x,const Edge y)
{
    return x.val

你可能感兴趣的:(poj)