博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(并查集 添加关系)How Many Answers Are Wrong --Hdu --3038
阅读量:6845 次
发布时间:2019-06-26

本文共 633 字,大约阅读时间需要 2 分钟。

链接:

http://acm.hdu.edu.cn/showproblem.php?pid=3038

http://acm.hust.edu.cn/vjudge/contest/view.action?cid=82830#problem/D

 

代码:

#include
#include
#include
#include
#include
#include
#include
using namespace std;#define N 200005int n, m, f[N], r[N];int Find(int x){ int k=f[x]; if(x!=f[x]) { f[x]=Find(f[x]); r[x]=r[x]+r[k]; } return f[x];}int main(){ while(scanf("%d%d", &n, &m)!=EOF) { int ans=0, i, a, b, t, fa, fb; for(i=0; i<=n; i++) { f[i]=i; r[i]=0; } for(i=0; i

 

转载于:https://www.cnblogs.com/YY56/p/4735617.html

你可能感兴趣的文章
【036】◀▶ 自己写的程序源代码
查看>>
performance_schema 变量
查看>>
Pixhawk 添加超声波定高
查看>>
error while loading shared libraries: xxx.so.x"错误的原因和解决办法
查看>>
在微软平台上运行 SAP 应用程序
查看>>
ubuntu下安装lamp环境
查看>>
常见浏览器兼容性问题与解决方案
查看>>
Day6 python基础
查看>>
AngularJS $watch 监听
查看>>
开启SharePoint Server 2013 中的“微博”功能——新闻源
查看>>
Spring注解@Component、@Repository、@Service、@Controller区别 .
查看>>
ACM-ICPC北京赛区2017网络同步赛
查看>>
天才们为什么独身一世?
查看>>
Exchange 2013 OWA搜索邮件失败问题处理
查看>>
linux系统计算从1加到100之和思路风暴
查看>>
Skype for Business Server 2015-12-WAP-发布-1-前端服务器-OWAS01
查看>>
下一代RDS技术预览版RemoteFX实测体验
查看>>
Oracle体系结构
查看>>
高性能的MySQL(3)单条查询问题还是服务器问题
查看>>
NSIS x64 位系统下安装
查看>>