题解 | #畅通工程#

畅通工程

https://www.nowcoder.com/practice/4878e6c6a24e443aac5211d194cf3913

#include "bits/stdc++.h"
using namespace std;
int father[5000];
int height[5000];
struct Edge {
    int begin;
    int end;
    int cost;
    int build;
};

void Inti() {
    for (int i = 0; i < 5000; ++i) {
        father[i] = i;
        height[i] = 1;
    }
}

int Find(int x) {
    if (x != father[x]) {
        father[x] = Find(father[x]);
    }
    return father[x];
}

void Union(int x, int y) {
    int x_father = Find(x);
    int y_father = Find(y);
    if (height[x_father] > height[y_father]) {
        father[y_father] = x_father;
    } else if (height[x_father] < height[y_father]) {
        father[x_father] = y_father;
    } else {
        father[y_father] = x_father;
        height[x_father]++;
    }
}

bool compare1(Edge x, Edge y) {
    if (x.build != y.build) return x.build > y.build;
    return x.cost < y.cost;
}
int main() {
    int n, m;
    while (scanf("%d%d", &n, &m) != EOF) {
        if (n == 0) {
            break;
        }
        Inti();
        int answer = 0;
        int flag;//1已建
        Edge edge[m];
        for (int i = 0; i < m; ++i) {
            scanf("%d%d", &edge[i].begin, &edge[i].end);
            if (Find(edge[i].begin) != Find(edge[i].end)) {
                Union(edge[i].begin, edge[i].end);
            }
        }
//        sort(edge,edge+(n*(n-1))/2,compare1);
        for (int i = 1; i <= n; ++i) {
            if (Find(i) == i) answer++;
        }
        printf("%d\n", answer - 1);
    }
    return 0;
}

全部评论

相关推荐

11-09 14:54
已编辑
华南农业大学 产品经理
大拿老师:这个简历,连手机号码和照片都没打码,那为什么关键要素求职职位就不写呢? 从上往下看,都没看出自己到底是产品经理的简历,还是电子硬件的简历? 这是一个大问题,当然,更大的问题是实习经历的描述是不对的 不要只是去写实习流程,陈平,怎么去开会?怎么去讨论? 面试问的是你的产品功能点,是怎么设计的?也就是要写项目的亮点,有什么功能?这个功能有什么难处?怎么去解决的? 实习流程大家都一样,没什么优势,也没有提问点,没有提问,你就不得分 另外,你要明确你投的是什么职位,如果投的是产品职位,你的项目经历写的全都是跟产品无关的,那你的简历就没用 你的面试官必然是一个资深的产品经理,他不会去问那些计算机类的编程项目 所以这种四不像的简历,在校招是大忌
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务