POJ 1182 食物链 【带权并查集/补集法】
现有N个动物,以1-N编号。每个动物都是A,B,C中的一种,但是我们并不知道它到底是哪一种。
有人用两种说法对这N个动物所构成的食物链关系进行描述:
第一种说法是"1 X Y",表示X和Y是同类。
第二种说法是"2 X Y",表示X吃Y。
此人对N个动物,用上述两种说法,一句接一句地说出K句话,这K句话有的是真的,有的是假的。当一句话满足下列三条之一时,这句话就是假话,否则就是真话。
1) 当前的话与前面的某些真的话冲突,就是假话;
2) 当前的话中X或Y比N大,就是假话;
3) 当前的话表示X吃X,就是假话。
你的任务是根据给定的N(1 <= N <= 50,000)和K句话(0 <= K <= 100,000),输出假话的总数。
Input
以下K行每行是三个正整数 D,X,Y,两数之间用一个空格隔开,其中D表示说法的种类。
若D=1,则表示X和Y是同类。
若D=2,则表示X吃Y。
Output
Sample Input
- 100 7
- 1 101 1
- 2 1 2
- 2 2 3
- 2 3 3
- 1 1 3
- 2 3 1
- 1 5 5
Sample Output
- 3
【洛谷】https://www.luogu.org/problemnew/show/P2024
- #include<cstdio>
- #include<string>
- #include<cstdlib>
- #include<cmath>
- #include<iostream>
- #include<cstring>
- #include<set>
- #include<queue>
- #include<algorithm>
- #include<vector>
- #include<map>
- #include<cctype>
- #include<stack>
- #include<sstream>
- #include<list>
- #include<assert.h>
- #include<bitset>
- #include<numeric>
- #define debug() puts("++++")
- #define gcd(a,b) __gcd(a,b)
- #define lson l,m,rt<<1
- #define rson m+1,r,rt<<1|1
- #define fi first
- #define se second
- #define pb push_back
- #define sqr(x) ((x)*(x))
- #define ms(a,b) memset(a,b,sizeof(a))
- #define sz size()
- #define be begin()
- #define pu push_up
- #define pd push_down
- #define cl clear()
- #define lowbit(x) -x&x
- #define all 1,n,1
- #define rep(i,x,n) for(int i=(x); i<(n); i++)
- #define in freopen("in.in","r",stdin)
- #define out freopen("out.out","w",stdout)
- using namespace std;
- typedef long long LL;
- typedef unsigned long long ULL;
- typedef pair<int,int> P;
- const int INF = 0x3f3f3f3f;
- const LL LNF = 1e18;
- const int maxn = 1e5 + ;
- const int maxm = 1e6 + ;
- const double PI = acos(-1.0);
- const double eps = 1e-;
- const int dx[] = {-,,,,,,-,-};
- const int dy[] = {,,,-,,-,,-};
- int dir[][] = {{,},{,-},{-,},{,}};
- const int mon[] = {, , , , , , , , , , , , };
- const int monn[] = {, , , , , , , , , , , , };
- int n,m,d,x,y;
- int fa[maxn*];
- inline int read()
- {
- int sum=;
- char ch=getchar();
- while(ch>''||ch<'') ch=getchar();
- while(ch>=''&&ch<='') sum=sum*+ch-,ch=getchar();
- return sum;
- }
- int Find(int x)
- {
- return fa[x]==x ? x:fa[x]=Find(fa[x]);
- }
- void join(int x,int y)
- {
- int fx=Find(x);
- int fy=Find(y);
- fa[fx]=fy;
- }
- int main()
- {
- scanf("%d%d",&n,&m);
- int ans=;
- for(int i=;i<=*n;i++) fa[i]=i;
- for(int i=;i<=m;i++)
- {
- scanf("%d%d%d",&d,&x,&y);
- if(x>n||y>n){ans++;continue;}
- if(d==)
- {
- if(Find(x+n)==Find(y) || Find(x+*n)==Find(y)) {ans++;continue;}
- join(x,y); join(x+n,y+n); join(x+*n,y+*n);
- }
- else if(d==)
- {
- if(Find(x)==Find(y) || Find(x+*n)==Find(y)) {ans++;continue;}
- join(x,y+*n); join(x+n,y); join(x+*n,y+n);
- }
- }
- printf("%d\n",ans);
- return ;
- }
- /*
- 【题意】
- 略
- 【类型】
- 带权并查集
- 【分析】
- 对于每种生物:设 x 为本身,x+n 为猎物,x+2*n 为天敌
- 【时间复杂度&&优化】
- 【trick】
- 【数据】
- */
POJ 1182 食物链 【带权并查集/补集法】的更多相关文章
- poj 1182 食物链 带权并查集
食物链是并查集的进阶运用的一道非常经典的题目. 题目如下: 动物王国中有三类动物A,B,C,这三类动物的食物链构成了有趣的环形.A吃B, B吃C,C吃A. 现有N个动物,以1-N编号.每个动物都是A, ...
- POJ 1182 食物链 (带权并查集 && 向量偏移)
题意 : 中文题就不说题意了…… 分析 : 通过普通并查集的整理归类, 能够单纯地知道某些元素是否在同一个集合内.但是题目不仅只有种类之分, 还有种类之间的关系, 即同类以及吃与被吃, 而且重点是题目 ...
- HDU 1829 A Bug's Life 【带权并查集/补集法/向量法】
Background Professor Hopper is researching the sexual behavior of a rare species of bugs. He assumes ...
- K - Find them, Catch them POJ - 1703 (带权并查集)
题目链接: K - Find them, Catch them POJ - 1703 题目大意:警方决定捣毁两大犯罪团伙:龙帮和蛇帮,显然一个帮派至少有一人.该城有N个罪犯,编号从1至N(N<= ...
- POJ - 2912 Rochambeau (带权并查集+枚举)
题意:有N个人被分为了三组,其中有一个人是开了挂的.同组的人的关系是‘=’,不同组的人关系是‘<’或'>',但是开了挂的人可以给出自己和他人任意的关系.现在要根据M条关系找出这个开了挂的人 ...
- A Bug's Life POJ - 2492 (带权并查集)
A Bug's Life POJ - 2492 Background Professor Hopper is researching the sexual behavior of a rare spe ...
- poj1182 食物链 带权并查集
题目传送门 题目大意:大家都懂. 思路: 今天给实验室的学弟学妹们讲的带权并查集,本来不想细讲的,但是被学弟学妹们的态度感动了,所以写了一下这个博客,思想在今天白天已经讲过了,所以直接上代码. 首先, ...
- poj 1182:食物链(种类并查集,食物链问题)
食物链 Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 44168 Accepted: 12878 Description ...
- POJ 1182 食物链(种类并查集)
食物链 Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 63592 Accepted: 18670 Description ...
随机推荐
- [LeetCode] Sort Colors 对于元素取值有限的数组,只遍历一遍的排序方法
Given an array with n objects colored red, white or blue, sort them so that objects of the same colo ...
- 求逆元的两种方法+求逆元的O(n)递推算法
到国庆假期都是复习阶段..所以把一些东西整理重温一下. gcd(a,p)=1,ax≡1(%p),则x为a的逆元.注意前提:gcd(a,p)=1; 方法一:拓展欧几里得 gcd(a,p)=1,ax≡1( ...
- UOJ#31 【UR #2】猪猪侠再战括号序列
传送门http://uoj.ac/problem/31 大家好我是来自百度贴吧的_叫我猪猪侠,英文名叫_CallMeGGBond. 我不曾上过大学,但这不影响我对离散数学.复杂性分析等领域的兴趣:尤其 ...
- MSSQL 数据库性能优化
优化数据库的注意事项: 1.关键字段建立索引. 2.使用存储过程,它使SQL变得更加灵活和高效. 3.备份数据库和清除垃圾数据. 4.SQL语句语法的优化. 5.清理删除日志. SQL语句优化的基本原 ...
- hdu 1087 Super Jumping! Jumping! Jumping!(动态规划DP)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1087 Super Jumping! Jumping! Jumping! Time Limit: 200 ...
- linux===Ubuntu修改设备名称
step1 sudo vim /etc/hostname 修改你需要的,保存退出 step2 sudo vim /etc/hosts 修改你需要的,保存退出 step3 reboot
- smb windows中使用的文件共享协议(主要用于与windows互通)
主要是samba服务. SMB协议又成为CIFS(Common Internet File System)协议 samba服务功能: 1文件共享 2打印共享 3加入windows2000/2003/2 ...
- mysql 1709: Index column size too large. The maximum column size is 767 bytes.
1709: Index column size too large. The maximum column size is 767 bytes. 修改排序规则解决 utf8_general_ci
- LeetCode解题报告—— Longest Valid Parentheses
Given a string containing just the characters '(' and ')', find the length of the longest valid (wel ...
- javascript定义对象的方式
javascript定义对象的方式(javascript中没有类,只有对象)1)基于已有对象扩充属性和方法(弊端:每次创建都与要重新定义属性方法) var object = new Object(); ...