博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ-1703-Find them, Catch them
阅读量:5818 次
发布时间:2019-06-18

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

Description

The police office in Tadu City decides to say ends to the chaos, as launch actions to root up the TWO gangs in the city, Gang Dragon and Gang Snake. However, the police first needs to identify which gang a criminal belongs to. The present question is, given two criminals; do they belong to a same clan? You must give your judgment based on incomplete information. (Since the gangsters are always acting secretly.)
Assume N (N <= 10^5) criminals are currently in Tadu City, numbered from 1 to N. And of course, at least one of them belongs to Gang Dragon, and the same for Gang Snake. You will be given M (M <= 10^5) messages in sequence, which are in the following two kinds:
1. D [a] [b]
where [a] and [b] are the numbers of two criminals, and they belong to different gangs.
2. A [a] [b]
where [a] and [b] are the numbers of two criminals. This requires you to decide whether a and b belong to a same gang.

Input

The first line of the input contains a single integer T (1 <= T <= 20), the number of test cases. Then T cases follow. Each test case begins with a line with two integers N and M, followed by M lines each containing one message as described above.

Output

For each message "A [a] [b]" in each case, your program should give the judgment based on the information got before. The answers might be one of "In the same gang.", "In different gangs." and "Not sure yet."

Sample Input

15 5A 1 2D 1 2A 1 2D 2 4A 1 4

Sample Output

Not sure yet.In different gangs.In the same gang.
1 #include
2 #include
3 int rank[1000000],pa[1000000]; 4 int cha(int k) 5 { 6 if(pa[k]!=k) 7 { 8 int t=pa[k]; 9 pa[k]=cha(pa[k]);10 rank[k]=(rank[k]+rank[t])%2;//不断更新11 }12 return pa[k];13 }14 bool bing(int x,int y)15 {16 int x2=cha(x);17 int y2=cha(y);18 if(x2!=y2)19 {20 pa[y2]=x2;//设为同一根节点后(不用根节点区分),方便用rank的值来区分21 rank[y2]=(rank[x]-rank[y]+1)%2;//用于标记它俩是否是属于同一帮派22 }23 return true;24 }25 void init(int n)26 {27 for(int i=1; i<=n; i++)28 {29 pa[i]=i;30 rank[i]=0;31 }32 }33 int main()34 {35 int cas,i,j,m,n,p1,p2,x2,y2;36 char k[2];37 scanf("%d",&cas);38 while(cas--)39 {40 41 scanf("%d%d",&n,&m);//n代表人数,m代表测试数据42 init(n);43 for(i=1; i<=m; i++)44 {45 scanf("%s%d%d",k,&p1,&p2);46 if(k[0]=='A')47 {48 x2=cha(p1);49 y2=cha(p2);50 if(x2!=y2)51 printf("Not sure yet.\n");//是第一次出现,根节点不相同时,还不能确定是否为同一帮派52 else53 {54 if(rank[p2]==rank[p1])55 printf("In the same gang.\n");56 else57 printf("In different gangs.\n");58 }59 }60 if(k[0]=='D')61 {62 bing(p1,p2);63 }64 }65 66 }67 return 0;68 }

2015-07-03,15:45:47

 

 

转载于:https://www.cnblogs.com/tianmin123/p/4618794.html

你可能感兴趣的文章
ios之UILabel
查看>>
Java基础之String,StringBuilder,StringBuffer
查看>>
1月9日学习内容整理:爬虫基本原理
查看>>
安卓中数据库的搭建与使用
查看>>
AT3908 Two Integers
查看>>
渐变色文字
查看>>
C++ 0X 新特性实例(比较常用的) (转)
查看>>
node生成自定义命令(yargs/commander)
查看>>
各种非算法模板
查看>>
node-express项目的搭建并通过mongoose操作MongoDB实现增删改查分页排序(四)
查看>>
PIE.NET-SDK插件式二次开发文档
查看>>
如何创建Servlet
查看>>
.NET 设计规范--.NET约定、惯用法与模式-2.框架设计基础
查看>>
win7 64位+Oracle 11g 64位下使用 PL/SQL Developer 的解决办法
查看>>
BZOJ1997:[HNOI2010]PLANAR——题解
查看>>
BZOJ1014:[JSOI2008]火星人prefix——题解
查看>>
使用Unity3D引擎开发赛车游戏
查看>>
HTML5新手入门指南
查看>>
opennebula 开发记录
查看>>
ubuntu 修改hostname
查看>>