题意:给你n个数,接着三种操作: 
I p v :告诉你 Xp = v 
I p q v :告诉你 Xp ^ Xq = v 
Q k p1 p2 … pk:问你k个数连续异或的结果 
注意前两类操作可能会出现与之前告诉你的相矛盾,此时输出“The first n(第几个I) facts are conflicting.”接着一直保持沉默,否则不输出。最后一类询问可能得不到值,就输出“I don’t know.”,否则输出结果

  题解:告诉你时使用并查集的合并操作,可以记录权值为此点异或父亲节点的值,祖先节点的权值一定为0(其他值异或0不变),因为:X^X1^X1^X2=X^X2 则可以进行路径压缩。 
  但是我们知道一个集合的关系时,却不一定知道每个元素各自的大小,所以再记录一个权值2,当一个集合祖先的权值2非负时,表示祖先确定大小了,而这个集合就一定可以知道每个元素的大小,否则就不知道。我们合并时就要注意某子树是否知道每个元素的大小。 
  询问是首先将明确其大小的值计算出来。而只知道关系一些数:如果有偶数个在同一集合,那这偶数个就可以运用它们间的关系一同求出。 
  这儿还有一个小麻烦就是当输入I时,后面个数不定,所以可以使用sscanf处理。 
  真不愧是神题啊,我copy文档的“I don’t know.”居然是错的。。。。。。。。。。。。。。。。。。。。。。。。。。。。错的。。。。。。。。。。。。。。。。。。。。。。。。。。

#include<set>
#include<map>
#include<queue>
#include<stack>
#include<cmath>
#include<vector>
#include<string>
#include<cstdio>
#include<cstring>
#include<stdlib.h>
#include<iostream>
#include<algorithm>
using namespace std;
#define eps 1E-8
/*注意可能会有输出-0.000*/
#define Sgn(x) (x<-eps? -1 :x<eps? 0:1)//x为两个浮点数差的比较,注意返回整型
#define Cvs(x) (x > 0.0 ? x+eps : x-eps)//浮点数转化
#define zero(x) (((x)>0?(x):-(x))<eps)//判断是否等于0
#define mul(a,b) (a<<b)
#define dir(a,b) (a>>b)
typedef long long ll;
typedef unsigned long long ull;
const int Inf=<<;
const double Pi=acos(-1.0);
const int Mod=1e9+;
const int Max=;
int fat[Max],ran[Max],num[Max];
int tem[],tem1;
void Init(int n)
{
for(int i=; i<=n; ++i)
{
fat[i]=i;
ran[i]=;
num[i]=-;
}
return;
}
int Find(int x)
{
if(x==fat[x])
return fat[x];
int y=Find(fat[x]);
ran[x]=(ran[x]^ran[fat[x]]);//异或优先级很低
return fat[x]=y;
}
int Union(int x,int y,int z)
{
int x1=Find(x);
if(y==-)//确定一个值
{
if(num[x1]==-)
{
num[x1]=(ran[x]^z);
return ;
}
if(num[x1]==(ran[x]^z))
return ;
return ;
}
int y1=Find(y);
if(x1==y1)
{
if((ran[x]^ran[y])==z)
return ;
return ;
}
if(num[x1]==-)//x集合不知道每个值得权值
{
fat[x1]=y1;
ran[x1]=(ran[x]^ran[y]^z);
return ;
}
else
{
fat[y1]=x1;
ran[y1]=(ran[x]^ran[y]^z);
if(num[y1]==-)
return ;
else
{
if((num[x1]^num[y1])==ran[y1])
return ;
return ;
}
}
}
int Solve(int n)//询问
{
int ans=,vis[];
for(int i=; i<tem1; ++i)
{
int x1=Find(tem[i]);
if(num[x1]!=-)
{
ans=(ans^ran[tem[i]]^num[x1]);
vis[i]=-;
}
else//不知道这个值
{
ans=(ans^ran[tem[i]]);
vis[i]=x1;
}
}
sort(vis,vis+tem1);
int flag=;
for(int i=; i<tem1; ++i)
{
if(vis[i]!=-)//不知道的值要在同集合出现偶数次
{
if(flag)
{
if(vis[i]!=vis[i-])
return -;
flag=;
}
else
flag=;
}
}
if(flag)
return -;
return ans;
}
int main()
{
int n,m;
int xx1,yy1,val,flag,coun=,tem3;
char str[];
while(~scanf("%d %d",&n,&m))
{
if(!n&&!m)
break;
tem3=;
printf("Case %d:\n",++coun);
flag=;
Init(n);
for(int i=; i<m; ++i)
{
scanf("%s",str);
if(str[]=='I')
{
tem3++;
getchar();
gets(str);
if(flag)
{
if(sscanf(str,"%d%d%d",&xx1,&yy1,&val)==)//转化
{
val=yy1;
yy1=-;
}
int tem2=Union(xx1,yy1,val);
if(!tem2)
{
printf("The first %d facts are conflicting.\n",tem3);
flag=;
}
}
}
else
{
scanf("%d",&tem1);
for(int j=; j<tem1; j++)
scanf("%d",&tem[j]);
if(flag)
{
int tem2=Solve(n);
if(tem2==-)
printf("I don't know.\n");
else
printf("%d\n",tem2);
}
}
}
printf("\n");
}
return ;
}

UVA 12232 Exclusive-OR(并查集+思想)的更多相关文章

  1. UVA 11987 - Almost Union-Find(并查集)

    UVA 11987 - Almost Union-Find 题目链接 题意:给定一些集合,操作1是合并集合,操作2是把集合中一个元素移动到还有一个集合,操作3输出集合的个数和总和 思路:并查集,关键在 ...

  2. PAT甲级1004题解——并查集思想改

    题目分析:本题开始一直在考虑如何将每一个节点通过一种合适的数据结构存储起来(一对多的关系),最后发现借助并查集的思想可以用一个数组p,p[i]存放i节点的父节点,每次查询编号为i的节点属于第几层且判断 ...

  3. CodeForces 828C String Reconstruction(并查集思想)

    题意:给你n个串,给你每个串在总串中开始的每个位置,问你最小字典序总串. 思路:显然这道题有很多重复填涂的地方,那么这里的时间花费就会特别高. 我们维护一个并查集fa,用fa[i]记录从第i位置开始第 ...

  4. UVA - 1197 (简单并查集计数)

    Severe acute respiratory syndrome (SARS), an atypical pneumonia of unknown aetiology, was recognized ...

  5. UVA 10158 War(并查集)

    //思路详见课本 P 214 页 思路:直接用并查集,set [ k ]  存 k 的朋友所在集合的代表元素,set [ k + n ] 存 k  的敌人 所在集合的代表元素. #include< ...

  6. UVA - 11987 Almost Union-Find 并查集的删除

    Almost Union-Find I hope you know the beautiful Union-Find structure. In this problem, you're to imp ...

  7. uva 6910 - Cutting Tree 并查集的删边操作,逆序

    https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_probl ...

  8. UVA - 208 Firetruck(并查集+dfs)

    题目: 给出一个结点d和一个无向图中所有的边,按字典序输出这个无向图中所有从1到d的路径. 思路: 1.看到紫书上的提示,如果不预先判断结点1是否能直接到达结点d,上来就直接dfs搜索的话会超时,于是 ...

  9. UVA 11987 Almost Union-Find 并查集单点修改

                                     Almost Union-Find I hope you know the beautiful Union-Find structur ...

随机推荐

  1. Python—>Mysql—>Dbvisualizer

    MySQLdb: https://pypi.python.org/pypi/MySQL-python/1.2.4 import MySQLdb 1.Download Connector/Python: ...

  2. cmd命令查看局域网内计算机信息

    ping [计算机名] ping -a [IP] nbtstat -a [IP] net view arp -a nslookup www.baidu.com 查看当前dns地址 tracert [I ...

  3. BestCoder27 1001.Jump and Jump... (hdu 5162) 解题报告

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5162 题目意思:有 n 个 kid,每个 kid 有三个成绩 a, b, c.选最大的一个成绩作为这个 ...

  4. Ubuntu 配置 Tomcat

    系统环境:Ubuntu 10.10(linux-kernel 2.6.35-22) 安装版本:apache-tomcat-7.0.29.tar.gz(官方网址:Apache Tomcat) 安装步骤: ...

  5. 表单中Readonly和Disabled的区别(转载)

    Readonly和Disabled是用在表单中的两个属性,它们都能够做到使用户不能够更改表单域中的内容.但是它们之间有着微小的差别,总结如下: Readonly只针对input(text / pass ...

  6. 使用json格式输出

    /** * json输出 * * @param unknown_type $info */ public function json_out ($info) { header('Content-typ ...

  7. mac VPN配置

    来自: http://www.eefocus.com/Kevin/blog/11-09/230878_53c71.html RSA的SecurID长的是这个样子滴: Mac里面,可以设置VPN, 方法 ...

  8. August 14th, Week 34th Sunday, 2016

    To live is to function, that is all there is in living. 活着就要发挥作用,这就是生活的全部内容. I often joke that my dr ...

  9. Jams倒酒

    Jams是一家酒吧的老板,他的酒吧提供2种体积的啤酒,a ml 和 b ml,分别使用容积为a ml 和 b ml的酒杯来装载. 酒吧的生意并不好.Jams发现酒鬼们都很穷,不像他那么土豪.有时,他们 ...

  10. poj1733(种类并查集+离散化)

    题目链接: http://poj.org/problem?id=1733 题意: 输入n表示有一个长度为n的0,1字符串, m表示接下来有m行输入, 接下来的m行输入中x, y, even表示第x到第 ...