数据结构----并查集
文章平均质量分 90
神探小小迪
回头看,呀!这代码是我以前写的啊,写的是啥啊~
展开
-
P3367 【模板】并查集
题目描述如题,现在有一个并查集,你需要完成合并和查询操作。输入输出格式输入格式:第一行包含两个整数N、M,表示共有N个元素和M个操作。接下来M行,每行包含三个整数Zi、Xi、Yi当Zi=1时,将Xi与Yi所在的集合合并当Zi=2时,输出Xi与Yi是否在同一集合内,是的话输出Y;否则话输出N输出格式:如上,对于每一个Zi=2的操作,都有一行输出,每行包含一个大写字母,为Y或者N输入输出样例输入样例#...原创 2018-05-04 08:53:12 · 142 阅读 · 0 评论 -
hdu 1116【欧拉通路+并查集】
Play on WordsProblem DescriptionSome of the secret doors contain a very interesting word puzzle. The team of archaeologists has to solve it to open that doors. Because there is no other way to open th...原创 2018-06-05 21:36:54 · 222 阅读 · 0 评论 -
HDU 1232畅通工程【并查集】
某省调查城镇交通状况,得到现有城镇道路统计表,表中列出了每条道路直接连通的城镇。省政府“畅通工程”的目标是使全省任何两个城镇间都可以实现交通(但不一定有直接的道路相连,只要互相间接通过道路可达即可)。问最少还需要建设多少条道路? Input测试输入包含若干测试用例。每个测试用例的第1行给出两个正整数,分别是城镇数目N ( < 1000 )和道路数目M;随后的M行对应M条道路,每行给出...原创 2018-08-23 20:04:16 · 131 阅读 · 0 评论 -
BZOJ 4195 程序自动分析【并查集+离散化】
Description 在实现程序自动分析的过程中,常常需要判定一些约束条件是否能被同时满足。考虑一个约束满足问题的简化版本:假设x1,x2,x3,…代表程序中出现的变量,给定n个形如xi=xj或xi≠xj的变量相等/不等的约束条件,请判定是否可以分别为每一个变量赋予恰当的值,使得上述所有约束条件同时被满足。例如,一个问题中的约束条件为:x1=x2,x2=x3,x3=x4,x1≠x4,这些...原创 2018-09-24 19:58:50 · 183 阅读 · 0 评论 -
POJ 1456 Supermarket【并查集+贪心】
A supermarket has a set Prod of products on sale. It earns a profit px for each product x∈Prod sold by a deadline dx that is measured as an integral number of time units starting from the moment the s...原创 2018-09-24 21:08:45 · 211 阅读 · 0 评论 -
POJ 1733 Parity【扩展域并查集】
题目链接:http://poj.org/problem?id=1733Now and then you play the following game with your friend. Your friend writes down a sequence consisting of zeroes and ones. You choose a continuous subsequence (f...原创 2018-09-25 16:57:15 · 208 阅读 · 0 评论 -
POJ 1182 食物链【扩展域 | 边带权并查集】
动物王国中有三类动物A,B,C,这三类动物的食物链构成了有趣的环形。A吃B, B吃C,C吃A。 现有N个动物,以1-N编号。每个动物都是A,B,C中的一种,但是我们并不知道它到底是哪一种。有人用两种说法对这N个动物所构成的食物链关系进行描述: 第一种说法是"1 X Y",表示X和Y是同类。 第二种说法是"2 X Y",表示X吃Y。 此人对N个动物,用上述两种说法,一句接一句地说出K句话,...原创 2018-09-25 18:01:23 · 176 阅读 · 0 评论 -
POJ 2492 A bug's life【扩展域 | 边带权并查集】
Background Professor Hopper is researching the sexual behavior of a rare species of bugs. He assumes that they feature two different genders and that they only interact with bugs of the opposite gend...原创 2018-09-25 22:44:09 · 132 阅读 · 0 评论