• uva 10608


    题目链接:10608 - Friends


    题目大意:给出n和m,表示有n个人和m组关系,然后给出m行数据,每行数据含a、b表示a和b为一组的,问最后哪一组人数最多,输出最多的人数。


    解题思路:可以说是一道裸的并查集,开一个cnt数组用于记录各组的人数,初始值为1,然后每次合并两个组的时候cnt数组也要想加,最后输出最大的cnt[i]就可以了。


    #include <stdio.h>
    #include <string.h>
    const int N = 30005;
    int n, m, f[N], cnt[N];
    
    int getfather(int x) {
    	return x == f[x] ? x : f[x] = getfather(f[x]);
    }
    
    void init() {
    	scanf("%d%d", &n, &m);
    	for (int i = 1; i <= n; i++) {
    		f[i] = i;
    		cnt[i] = 1;
    	}
    }
    
    int solve() {
    	int x, y, a, b, ans = 0;
    	for (int i = 0; i < m; i++) {
    		scanf("%d%d", &a, &b);
    		x = getfather(a), y = getfather(b);
    		if (x == y) continue;
    		f[y] = x;
    		cnt[x] += cnt[y];
    		if (cnt[x] > ans) ans = cnt[x];
    	}
    	return ans;
    }
    
    int main () {
    	int cas;
    	scanf("%d", &cas);
    	while (cas--) {
    		init();
    		printf("%d
    ", solve());
    	}
    	return 0;
    }
    


  • 相关阅读:
    StackExchange.Redis 文档翻译
    性能分析
    脚本
    KEYS,SCAN,FLUSHDB 等等,这些命令在哪里?
    事件
    发布/订阅 消息顺序
    Redis中的事务
    键、值以及通道
    管道和多路复用器
    配置
  • 原文地址:https://www.cnblogs.com/phisy/p/3372007.html
Copyright © 2020-2023  润新知