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

拓扑排序和并差集

  1. #include <cstdio>
  2. #include <queue>
  3. #include <vector>
  4. #include <cstring>
  5. #include <algorithm>
  6. #define maxn 10010
  7. using namespace std;
  8. int n,m,c;
  9. int f[maxn],in[maxn];
  10. vector<int>g[maxn];
  11. struct node
  12. {
  13. int x,y;
  14. char ch;
  15. }p[maxn*];
  16. void inti()
  17. {
  18. for(int i=; i<=n; i++)
  19. {
  20. f[i]=i; in[i]=;
  21. g[i].clear();
  22. }
  23. }
  24.  
  25. int find1(int x)
  26. {
  27. if(x==f[x]) return x;
  28. return f[x]=find1(f[x]);
  29. }
  30.  
  31. void merge1(int a,int b)
  32. {
  33. int fa=find1(a);
  34. int fb=find1(b);
  35. if(fa!=fb)
  36. {
  37. f[fb]=fa;
  38. }
  39. }
  40.  
  41. int topp()
  42. {
  43. int flag=;
  44. queue<int>q;
  45. for(int i=; i<n; i++)
  46. {
  47. if(!in[i]&&find1(i)==i) q.push(i);
  48. }
  49. int cnt=;
  50. while(!q.empty())
  51. {
  52. if(q.size()>=) flag=-;
  53. int x=q.front(); q.pop();
  54. cnt++;
  55. for(int i=; i<(int)g[x].size(); i++)
  56. {
  57. if((--in[g[x][i]])==) q.push(g[x][i]);
  58. }
  59. }
  60. if(cnt<c) return ;
  61. return flag;
  62. }
  63. int main()
  64. {
  65. while(~scanf("%d%d",&n,&m))
  66. {
  67. inti();
  68. c=n;
  69. for(int i=; i<m; i++)
  70. {
  71. scanf("%d%*c%c%*c%d",&p[i].x,&p[i].ch,&p[i].y);
  72. if(p[i].ch=='=')
  73. {
  74. merge1(p[i].x,p[i].y); c--;
  75. }
  76. }
  77. bool flag=false;
  78. for(int i=; i<m; i++)
  79. {
  80. if(p[i].ch=='=')
  81. {
  82. continue;
  83. }
  84. int x1=find1(p[i].x); int y1=find1(p[i].y);
  85. if(x1==y1) flag=true;
  86. if(p[i].ch=='<')
  87. {
  88. if(find(g[x1].begin(),g[x1].end(),y1)==g[x1].end())
  89. {
  90. g[x1].push_back(y1);
  91. in[y1]++;
  92. }
  93. }
  94. else if(p[i].ch=='>')
  95. {
  96. if(find(g[y1].begin(),g[y1].end(),x1)==g[y1].end())
  97. {
  98. g[y1].push_back(x1);
  99. in[x1]++;
  100. }
  101. }
  102. }
  103. bool flag1=false;
  104. if(!flag)
  105. {
  106. int cc=topp();
  107. if(cc==) flag=true;
  108. else if(cc==-) flag1=true;
  109. }
  110. if(flag)
  111. {
  112. printf("CONFLICT\n");
  113. }
  114. else if(flag1)
  115. {
  116. printf("UNCERTAIN\n");
  117. }
  118. else printf("OK\n");
  119. }
  120. return ;
  121. }

hdu 1811 Rank of Tetris的更多相关文章

  1. ACM: hdu 1811 Rank of Tetris - 拓扑排序-并查集-离线

    hdu 1811 Rank of Tetris Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%I64d & % ...

  2. HDU 1811 Rank of Tetris(并查集按秩合并+拓扑排序)

    Rank of Tetris Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) T ...

  3. HDU 1811 Rank of Tetris(拓扑排序+并查集)

    题目链接: 传送门 Rank of Tetris Time Limit: 1000MS     Memory Limit: 32768 K Description 自从Lele开发了Rating系统, ...

  4. hdu 1811 Rank of Tetris (并查集+拓扑排序)

    Rank of Tetris Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)To ...

  5. HDU 1811 Rank of Tetris 拓补排序+并查集

    Rank of Tetris Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) [ ...

  6. HDU 1811 Rank of Tetris(并查集+拓扑排序 非常经典)

    Rank of Tetris Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)To ...

  7. hdu 1811 Rank of Tetris (拓扑 & 并查集)

    Rank of Tetris Time Limit: 1000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)To ...

  8. hdu 1811 Rank of Tetris - 拓扑排序 - 并查集

    自从Lele开发了Rating系统,他的Tetris事业更是如虎添翼,不久他遍把这个游戏推向了全球. 为了更好的符合那些爱好者的喜好,Lele又想了一个新点子:他将制作一个全球Tetris高手排行榜, ...

  9. HDU 1811 Rank of Tetris 【拓扑排序 + 并查集】

    自从Lele开发了Rating系统,他的Tetris事业更是如虎添翼,不久他遍把这个游戏推向了全球. 为了更好的符合那些爱好者的喜好,Lele又想了一个新点子:他将制作一个全球Tetris高手排行榜, ...

随机推荐

  1. LeetCode_Minimum Window Substring

    Given a string S and a string T, find the minimum window in S which will contain all the characters ...

  2. 响应头location 页面跳转

    登陆:http://192.168.32.161/DEVOPS/index.php/Index/do_login Cache-Control no-store, no-cache, must-reva ...

  3. 淡淡de馨香---职业尊严

    大学四年时光匆匆而过,仿佛一切都不曾远去,那种熟悉又激动的感觉好似就在昨天,但是.一切都仅仅是一种感觉,在现实面前没有谁能够逆天,在被遗忘的什么时候,曾经是想着无数的梦想与自定义,同样也是在被遗忘的什 ...

  4. 算法导论(第三版)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 ...

  5. Saruman's Army (POJ 3069)

    直线上有N个点.点i的位置是Xi.从这N个点中选择若干个,给它们加上标记.对每一个点,其距离为R以内的区域里必须又带有标记的点(自己本身带有标记的点,可以认为与其距离为0的地方有一个带有标记的点).在 ...

  6. openSourceEvent

    开放源码(开源)的精神在于使用者可以使用.复制.散布.研究和改进软件.这可以追溯到20世纪60年代,至今已有半个世纪了.虽然下面所列举的不都是专门的开源产品,但还是在开源发展的进程中有着巨大的影响. ...

  7. java_接口的应用

    package com.test; interface USB{ //创建一个USB接口,所有的操作要按照这个标准来工作 void start();//默认为public void stop(); } ...

  8. 写一个段落python代码推理list深浅

    主要是针对嵌套列表问题. 列表套列表,究竟子列表那个更深... 这个问题想着就烦.假设嵌套10000万个列表是不是要统计10000个数再排序呢? 最后想了想用 list的extend功能 加上递归函数 ...

  9. UITableView滑动按钮的操作

    一.开题  首先先创建工程, 创建工程的步骤就不一一介绍了, 前面有提过, 接下来是要在VC上创建一个tableview当然你也可以选择一个类继承于UITableView两者都可以, 这要看个人喜欢了 ...

  10. Hacker(20)----手动修复Windows系统漏洞

    Win7系统中存在漏洞时,用户需要采用各种办法来修复系统中存在的漏洞,既可以使用Windows Update修复,也可使用360安全卫士来修复. 一.使用Windows Update修复系统漏洞 Wi ...