博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
洛谷P3367并查集
阅读量:5160 次
发布时间:2019-06-13

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

#include 
#include
#include
#include
#include
#include
#define re registerusing namespace std;const int maxn = 10005;const int maxm = 200005;inline int read(){ char ch = getchar(); int f = 1 , x = 0 ; while(ch > '9' || ch < '0'){if(ch == '-') f = -1;ch = getchar();} while(ch >= '0' && ch <= '9') {x = (x << 1) + (x << 3) + ch - '0'; ch = getchar();} return x * f;}int n,m,z,x,y;int fa[maxn];inline int find(int x){ if(x != fa[x]) fa[x] = find(fa[x]); return fa[x];}inline void init(){ for(re int i = 1 ; i <= n ; ++i) fa[i] = i;}int main(){ n = read(); m = read(); init(); for(re int i = 1 ; i <= m ; ++i) { z = read(); x = read(); y = read(); if(z == 1) { int f1 = find(x) , f2 = find(y); if(f1 != f2) fa[f1] = f2; } else { int f1 = find(x) , f2 = find(y); if(f1 == f2) printf("Y\n"); else printf("N\n"); } } return 0;}

转载于:https://www.cnblogs.com/Stephen-F/p/9931872.html

你可能感兴趣的文章
学习笔记-KMP算法
查看>>
Timer-triggered memory-to-memory DMA transfer demonstrator
查看>>
跨域问题整理
查看>>
[Linux]文件浏览
查看>>
64位主机64位oracle下装32位客户端ODAC(NFPACS版)
查看>>
获取国内随机IP的函数
查看>>
今天第一次写博客
查看>>
江城子·己亥年戊辰月丁丑日话凄凉
查看>>
IP V4 和 IP V6 初识
查看>>
Spring Mvc模式下Jquery Ajax 与后台交互操作
查看>>
(转)matlab练习程序(HOG方向梯度直方图)
查看>>
『Raid 平面最近点对』
查看>>
【ADO.NET基础-数据加密】第一篇(加密解密篇)
查看>>
C语言基础小结(一)
查看>>
STL中的优先级队列priority_queue
查看>>
UE4 使用UGM制作血条
查看>>
浏览器对属性兼容性支持力度查询网址
查看>>
OO学习总结与体会
查看>>
虚拟机长时间不关造成的问题
查看>>
校门外的树2 contest 树状数组练习 T4
查看>>