POJ 1703 Find them, Catch them 并查集,还是有…
2018-06-17 23:55:40来源:未知 阅读 ()
题目不难理解,A判断2人是否属于同一帮派,D确认两人属于不同帮派。于是需要一个数组r[]来判断父亲节点和子节点的关系。具体思路可参考http://blog.csdn.net/freezhanacmore/article/details/8774033
#include <iostream> #include <cstring> #include <cstdio> using namespace std; const int maxn=100005; int f[maxn]; int r[maxn]; int Find_f(int x) { if (x != f[x]) { int t=f[x]; f[x] = Find_f(f[x]); r[x]=(r[x]+r[t])%2; return f[x]; } return f[x]; } void Union(int x,int y) { int fx=Find_f(x); int fy=Find_f(y); f[fx]=fy; r[fx]=(r[x]+1+r[y])%2; } int main() { //freopen("in.txt","r",stdin); int t; scanf("%d",&t); while(t--) { int n,m; scanf("%d%d",&n,&m); for(int i=1; i<=n; i++) { f[i]=i; r[i]=0; } char c; int crime1,crime2; while(m--) { getchar(); scanf("%c%d%d",&c,&crime1,&crime2); //printf("%c\n",c); if(c=='D') Union(crime1,crime2); else if(c=='A') { if(Find_f(crime1)==Find_f(crime2)) if(r[crime1]!=r[crime2]) printf("In different gangs.\n"); else printf("In the same gang.\n"); else printf("Not sure yet.\n"); } } } return 0; }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- POJ-3278 2020-04-01
- AtCoder Grand Contest 043--A - Range Flip Find Route 2020-03-22
- Asteroids!_poj2225 2020-02-09
- poj-1753题题解思路 2020-01-26
- POJ1852 2019-11-11
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash