Mahmoud wants to write a new dictionary that contains n words and relations between them. There are two types of relations: synonymy (i. e. the two words mean the same) and antonymy (i. e. the two words mean the opposite). From time to time he discovers a new relation between two words.
He know that if two words have a relation between them, then each of them has relations with the words that has relations with the other. For example, if like means love and love is the opposite of hate, then like is also the opposite of hate. One more example: if love is the opposite of hate and hate is the opposite of like, then love means like, and so on.
Sometimes Mahmoud discovers a wrong relation. A wrong relation is a relation that makes two words equal and opposite at the same time. For example if he knows that love means like and like is the opposite of hate, and then he figures out that hate means like, the last relation is absolutely wrong because it makes hate and like opposite and have the same meaning at the same time.
After Mahmoud figured out many relations, he was worried that some of them were wrong so that they will make other relations also wrong, so he decided to tell every relation he figured out to his coder friend Ehab and for every relation he wanted to know is it correct or wrong, basing on the previously discovered relations. If it is wrong he ignores it, and doesn't check with following relations.
After adding all relations, Mahmoud asked Ehab about relations between some words based on the information he had given to him. Ehab is busy making a Codeforces round so he asked you for help.
The first line of input contains three integers n, m and q (2 ≤ n ≤ 105, 1 ≤ m, q ≤ 105) where n is the number of words in the dictionary, m is the number of relations Mahmoud figured out and q is the number of questions Mahmoud asked after telling all relations.
The second line contains n distinct words a1, a2, ..., an consisting of small English letters with length not exceeding 20, which are the words in the dictionary.
Then m lines follow, each of them contains an integer t (1 ≤ t ≤ 2) followed by two different words xi and yi which has appeared in the dictionary words. If t = 1, that means xi has a synonymy relation with yi, otherwise xi has an antonymy relation with yi.
Then q lines follow, each of them contains two different words which has appeared in the dictionary. That are the pairs of words Mahmoud wants to know the relation between basing on the relations he had discovered.
All words in input contain only lowercase English letters and their lengths don't exceed 20 characters. In all relations and in all questions the two words are different.
First, print m lines, one per each relation. If some relation is wrong (makes two words opposite and have the same meaning at the same time) you should print "NO" (without quotes) and ignore it, otherwise print "YES" (without quotes).
After that print q lines, one per each question. If the two words have the same meaning, output 1. If they are opposites, output 2. If there is no relation between them, output 3.
See the samples for better understanding.
3 3 4 hate love like 1 love like 2 love hate 1 hate like love like love hate like hate hate like
YES YES NO 1 2 2 2
8 6 5 hi welcome hello ihateyou goaway dog cat rat 1 hi welcome 1 ihateyou goaway 2 hello ihateyou 2 hi goaway 2 hi hello 1 hi hello dog cat dog hi hi hello ihateyou goaway welcome ihateyou
YES YES YES YES NO YES 3 3 1 1 2
题意:就是给定一个文本,然后每次输入两个词以及两个词之间的关系(1表示为近义词,2表示为相反词),在输入的过程中如果出现关系矛盾,那么这次的输入无效并且输出NO 否则就输出YES,有q个询问,询问两个词之间的关系,两个词近义词输出1,相反词输出2,没有任何关系输出3
解题思路:带权并查集,由于同义词的同义词是同义词,反义词的反义词是同义词,词与词之间的关系符合模2的运算,若x和y的关系是1(反义词),y和z的关系是1(反义词),那么x和z的关系就为(1+1)%2=0(同义词),若x和y有关(x和y在同一个集合),那么就可以根据x,y与它们各自的祖先的关系计算出x与y的关系
#include <iostream>
#include <cstdio>
#include <string>
#include <cstring>
#include <algorithm>
#include <cmath>
#include <queue>
#include <vector>
#include <set>
#include <stack>
#include <map>
#include <climits>
using namespace std;
#define LL long long
const int MAXN=100009;
int n,m,q;
int f[MAXN],relation[MAXN];
string ch[MAXN];
map<string,int>mp;
int Find(int x)
{
if(f[x]==x) return x;
int k=f[x];
f[x]=Find(f[x]);
relation[x]=(relation[x]+relation[k])%2;
return f[x];
}
int main()
{
while(~scanf("%d %d %d",&n,&m,&q))
{
for(int i=1;i<=n;i++) cin>>ch[i],mp[ch[i]]=i;
for(int i=1;i<=n;i++) f[i]=i,relation[i]=0;
string s1,s2;
for(int i=1;i<=m;i++)
{
int z,x,y;
cin>>z>>s1>>s2;
z--;
x=mp[s1],y=mp[s2];
int xx=Find(x),yy=Find(y);
if(xx!=yy)
{
f[yy]=xx;
relation[yy]=(z+relation[x]+relation[y])%2;
printf("YES\n");
}
else
{
int k=(relation[x]+relation[y])%2;
if(k!=z) printf("NO\n");
else printf("YES\n");
}
}
while(q--)
{
cin>>s1>>s2;
int x=mp[s1],y=mp[s2];
int xx=Find(x),yy=Find(y);
if(xx!=yy) puts("3");
else
{
int k=(relation[x]+relation[y])%2;
printf("%d\n",k+1);
}
}
}
return 0;
}