[2016-03-19][UVALive][3644][X-Plosives]

Posted 红洋

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[2016-03-19][UVALive][3644][X-Plosives]相关的知识,希望对你有一定的参考价值。

  • 时间:2016-03-19 12:26:47 星期六

  • 题目编号:[2016-03-19][UVALive][3644][X-Plosives]

  • 题目大意:n个物品如果含有n个元素,就会爆炸,会爆炸的话就不能放入仓库,问有多少个物品不能放入仓库

  • 分析:每次加入一个物品,如果含有新的元素,那么元素的数目始终大于物品的数目1个,如果新的物品含有已经存在的元素,那么一定会爆炸

  • 方法:并查集,已经加入的元素就不加

  1. #include <cstdio>
  2. using namespace std;
  3. #define FOR(x,y,z) for(int (x)=(y);(x)<(z);++(x))
  4. const int maxn = 1E5 + 100;
  5. int fa[maxn];
  6. void ini(){
  7. FOR(i,0,maxn) fa[i] = i;
  8. }
  9. int fnd(int x){
  10. return x == fa[x]?x:fa[x] = fnd(fa[x]);
  11. }
  12. int uni(int x,int y){
  13. x = fnd(x);y = fnd(y);
  14. if(x == y) return 0;
  15. fa[x] = y;
  16. return 1;
  17. }
  18. int main(){
  19. int u,v;
  20. while(~scanf("%d",&u)){
  21. int ans = 0;
  22. ini();
  23. while(~u){
  24. scanf("%d",&v);
  25. if(!uni(u,v)) ++ans;
  26. scanf("%d",&u);
  27. }
  28. printf("%d\n",ans);
  29. }
  30. return 0;
  31. }




以上是关于[2016-03-19][UVALive][3644][X-Plosives]的主要内容,如果未能解决你的问题,请参考以下文章

[2016-03-19][UVALive][3902][Network]

[2016-03-19][UVALive][3027][Corporative Network]

[2016-03-19][UVA][11462][Age Sort]

[2016-03-19][UVA][11549][Calculator Conundrum]

[2016-03-19][UVA][11520][Fill the Square]

[2016-03-19][UVA][11078][Open Credit System]