hdu 1811 Rank of Tetris
http://acm.hdu.edu.cn/showproblem.php?pid=1811
拓扑排序和并差集
- #include <cstdio>
- #include <queue>
- #include <vector>
- #include <cstring>
- #include <algorithm>
- #define maxn 10010
- using namespace std;
- int n,m,c;
- int f[maxn],in[maxn];
- vector<int>g[maxn];
- struct node
- {
- int x,y;
- char ch;
- }p[maxn*];
- void inti()
- {
- for(int i=; i<=n; i++)
- {
- f[i]=i; in[i]=;
- g[i].clear();
- }
- }
- int find1(int x)
- {
- if(x==f[x]) return x;
- return f[x]=find1(f[x]);
- }
- void merge1(int a,int b)
- {
- int fa=find1(a);
- int fb=find1(b);
- if(fa!=fb)
- {
- f[fb]=fa;
- }
- }
- int topp()
- {
- int flag=;
- queue<int>q;
- for(int i=; i<n; i++)
- {
- if(!in[i]&&find1(i)==i) q.push(i);
- }
- int cnt=;
- while(!q.empty())
- {
- if(q.size()>=) flag=-;
- int x=q.front(); q.pop();
- cnt++;
- for(int i=; i<(int)g[x].size(); i++)
- {
- if((--in[g[x][i]])==) q.push(g[x][i]);
- }
- }
- if(cnt<c) return ;
- return flag;
- }
- int main()
- {
- while(~scanf("%d%d",&n,&m))
- {
- inti();
- c=n;
- for(int i=; i<m; i++)
- {
- scanf("%d%*c%c%*c%d",&p[i].x,&p[i].ch,&p[i].y);
- if(p[i].ch=='=')
- {
- merge1(p[i].x,p[i].y); c--;
- }
- }
- bool flag=false;
- for(int i=; i<m; i++)
- {
- if(p[i].ch=='=')
- {
- continue;
- }
- int x1=find1(p[i].x); int y1=find1(p[i].y);
- if(x1==y1) flag=true;
- if(p[i].ch=='<')
- {
- if(find(g[x1].begin(),g[x1].end(),y1)==g[x1].end())
- {
- g[x1].push_back(y1);
- in[y1]++;
- }
- }
- else if(p[i].ch=='>')
- {
- if(find(g[y1].begin(),g[y1].end(),x1)==g[y1].end())
- {
- g[y1].push_back(x1);
- in[x1]++;
- }
- }
- }
- bool flag1=false;
- if(!flag)
- {
- int cc=topp();
- if(cc==) flag=true;
- else if(cc==-) flag1=true;
- }
- if(flag)
- {
- printf("CONFLICT\n");
- }
- else if(flag1)
- {
- printf("UNCERTAIN\n");
- }
- else printf("OK\n");
- }
- return ;
- }
hdu 1811 Rank of Tetris的更多相关文章
- ACM: hdu 1811 Rank of Tetris - 拓扑排序-并查集-离线
hdu 1811 Rank of Tetris Time Limit:1000MS Memory Limit:32768KB 64bit IO Format:%I64d & % ...
- HDU 1811 Rank of Tetris(并查集按秩合并+拓扑排序)
Rank of Tetris Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) T ...
- HDU 1811 Rank of Tetris(拓扑排序+并查集)
题目链接: 传送门 Rank of Tetris Time Limit: 1000MS Memory Limit: 32768 K Description 自从Lele开发了Rating系统, ...
- hdu 1811 Rank of Tetris (并查集+拓扑排序)
Rank of Tetris Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)To ...
- HDU 1811 Rank of Tetris 拓补排序+并查集
Rank of Tetris Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) [ ...
- HDU 1811 Rank of Tetris(并查集+拓扑排序 非常经典)
Rank of Tetris Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)To ...
- hdu 1811 Rank of Tetris (拓扑 & 并查集)
Rank of Tetris Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)To ...
- hdu 1811 Rank of Tetris - 拓扑排序 - 并查集
自从Lele开发了Rating系统,他的Tetris事业更是如虎添翼,不久他遍把这个游戏推向了全球. 为了更好的符合那些爱好者的喜好,Lele又想了一个新点子:他将制作一个全球Tetris高手排行榜, ...
- HDU 1811 Rank of Tetris 【拓扑排序 + 并查集】
自从Lele开发了Rating系统,他的Tetris事业更是如虎添翼,不久他遍把这个游戏推向了全球. 为了更好的符合那些爱好者的喜好,Lele又想了一个新点子:他将制作一个全球Tetris高手排行榜, ...
随机推荐
- LeetCode_Minimum Window Substring
Given a string S and a string T, find the minimum window in S which will contain all the characters ...
- 响应头location 页面跳转
登陆:http://192.168.32.161/DEVOPS/index.php/Index/do_login Cache-Control no-store, no-cache, must-reva ...
- 淡淡de馨香---职业尊严
大学四年时光匆匆而过,仿佛一切都不曾远去,那种熟悉又激动的感觉好似就在昨天,但是.一切都仅仅是一种感觉,在现实面前没有谁能够逆天,在被遗忘的什么时候,曾经是想着无数的梦想与自定义,同样也是在被遗忘的什 ...
- 算法导论(第三版)Exercises2.1(插入排序、线性查找、N位大数相加)
关于练习程序的说明参见置顶的那篇. 2.1-1: 31 41 59 26 41 58 31 41 59 26 41 58 31 41 59 26 41 58 26 31 41 59 41 58 26 ...
- Saruman's Army (POJ 3069)
直线上有N个点.点i的位置是Xi.从这N个点中选择若干个,给它们加上标记.对每一个点,其距离为R以内的区域里必须又带有标记的点(自己本身带有标记的点,可以认为与其距离为0的地方有一个带有标记的点).在 ...
- openSourceEvent
开放源码(开源)的精神在于使用者可以使用.复制.散布.研究和改进软件.这可以追溯到20世纪60年代,至今已有半个世纪了.虽然下面所列举的不都是专门的开源产品,但还是在开源发展的进程中有着巨大的影响. ...
- java_接口的应用
package com.test; interface USB{ //创建一个USB接口,所有的操作要按照这个标准来工作 void start();//默认为public void stop(); } ...
- 写一个段落python代码推理list深浅
主要是针对嵌套列表问题. 列表套列表,究竟子列表那个更深... 这个问题想着就烦.假设嵌套10000万个列表是不是要统计10000个数再排序呢? 最后想了想用 list的extend功能 加上递归函数 ...
- UITableView滑动按钮的操作
一.开题 首先先创建工程, 创建工程的步骤就不一一介绍了, 前面有提过, 接下来是要在VC上创建一个tableview当然你也可以选择一个类继承于UITableView两者都可以, 这要看个人喜欢了 ...
- Hacker(20)----手动修复Windows系统漏洞
Win7系统中存在漏洞时,用户需要采用各种办法来修复系统中存在的漏洞,既可以使用Windows Update修复,也可使用360安全卫士来修复. 一.使用Windows Update修复系统漏洞 Wi ...