hdu1598 find the most comfortable road 并查集+贪心

题目链接:here

题意。。。虽然题目是英文。。。但是题都是中文。。这里就不多叨叨了。。。。

分析:

主要运用了并查集,和贪心,先把所有公路的速度,由小到大排序,然后一条一条的取,最后所有公路差的最大值就是结果。

代码:

#include 
#include 
#include 
using namespace std;

const int maxn = 205;
const int maxm = 1005;
const int inf = (0x7f7f7f7f);
#define min(a,b)    ((a)<(b)?(a):(b))

int n, m, s, t;
int ans;
int fa[maxn];
struct Edge
{
    int s, e, speed;
}edge[maxm];

int cmp(Edge a, Edge b)
{
    return a.speed < b.speed;
}

int find(int x)
{
    while (fa[x] != x) x = fa[x];
    return x;
}

int main()
{
    while (scanf("%d %d", &n, &m) != EOF)
    {
        int i, j;
        for (i=0; i


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