题目链接: https://www.patest.cn/contests/pat-a-practise/1034 用了两种方法,DFS和并查集都是一样的结果,测试点0,4,5过不去,实在是不知道哪里错了 ,牛客网上能AC。请各位大神帮忙看看,万分感谢!!! 我的代码1,DFS方法: #include <stdio.h> #include <stdlib.h> #include <string.h> #define MAXH 17577 #define MAXP 2017 typedef struct PERSON *P...