博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ2492---A Bug's Life(做完食物链,再秒这个)
阅读量:4046 次
发布时间:2019-05-25

本文共 1113 字,大约阅读时间需要 3 分钟。

和食物链那个是一种类型的,直接代码。

#include
#include
#include
using namespace std;int s[4100];int Find(int x){ if (s[x] < 0)return x; else return s[x] = Find(s[x]);//路径压缩}void unite(int x, int y){ int rootx = Find(x); int rooty = Find(y); if(rootx==rooty)return; if (s[rootx] < s[rooty]) { s[rootx] += s[rooty]; s[rooty] = rootx; } else { s[rooty] += s[rootx]; s[rootx] = rooty; }}bool same(int x, int y){ return Find(x) == Find(y);}int main(){ int N; cin >> N; for(int i=1;i<=N;i++) { int flag = 1; int bugs, inter; cin >> bugs >> inter;//就是不改,还不用scanf。 fill(s + 1, s + 1 + 2*bugs, -1); while (inter--) { int x, y; cin >> x >> y; if (same(x, y)) flag = 0; else { unite(x, y + bugs); unite(x + bugs, y); } } printf("Scenario #%d:\n", i); if (!flag) puts("Suspicious bugs found!"); else puts("No suspicious bugs found!"); puts(""); } system("pause");}

转载地址:http://ckyci.baihongyu.com/

你可能感兴趣的文章
Linux 粘滞位 suid sgid
查看>>
C#控件集DotNetBar安装及破解
查看>>
Winform皮肤控件IrisSkin4.dll使用
查看>>
Winform多线程
查看>>
C# 托管与非托管
查看>>
Node.js中的事件驱动编程详解
查看>>
mongodb 命令
查看>>
MongoDB基本使用
查看>>
mongodb管理与安全认证
查看>>
nodejs内存控制
查看>>
nodejs Stream使用中的陷阱
查看>>
MongoDB 数据文件备份与恢复
查看>>
数据库索引介绍及使用
查看>>
MongoDB数据库插入、更新和删除操作详解
查看>>
MongoDB文档(Document)全局唯一ID的设计思路
查看>>
mongoDB简介
查看>>
Redis持久化存储(AOF与RDB两种模式)
查看>>
memcached工作原理与优化建议
查看>>
Redis与Memcached的区别
查看>>
redis sharding方案
查看>>