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.

Input

The first line of input contains three integers nm and q (2 ≤ n ≤ 105, 1 ≤ m, q ≤ 105) where n is the number of words in the dictionary, mis 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.

Output

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.

Examples

input

3 3 4
hate love like
1 love like
2 love hate
1 hate like
love like
love hate
like hate
hate like

output

YES
YES
NO
1
2
2
2

input

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

output

YES
YES
YES
YES
NO
YES
3
3
1
1
2

题解:

可以看作是POJ1703的升级版,可以先做一做1703这个题;

需要多维护一下x,y,和x+n,y+n  

#include<bits/stdc++.h>
using namespace std;
const int MAXN=2e5+10;
const int MOD=1e9+7;
map<string,int >ma;
int n,m,q;
int pri[MAXN];
int find(int x)
{
if(pri[x]==x) return x;
return pri[x]=find(pri[x]);
}
void mix(int a,int b)
{
int x=find(a),y=find(b);
if(x!=y) pri[x]=y;
}
int main()
{
scanf("%d%d%d",&n,&m,&q);
string s;
for(int i=1;i<=n;i++)
{
cin>>s;
ma[s]=i;
}
for(int i=0;i<=n+n;i++)
{
pri[i]=i;
}
for(int i=0;i<m;i++)
{
int a;
string x,y;
cin>>a>>x>>y;
int kx=find(ma[x]);
int ky=find(ma[y]);
if(a==1)
{
if(find(ma[x]+n)==find(ma[y])||find(ma[x])==find(ma[y]+n))
{
printf("NO\n");
}
else
{
printf("YES\n");
mix(ma[x],ma[y]);
mix(ma[x]+n,ma[y]+n);
} }
else if(a==2)
{
if(kx==ky||find(ma[x]+n)==find(ma[y]+n))
{
puts("NO");
}
else
{
mix(ma[x],ma[y]+n);
mix(ma[x]+n,ma[y]);
printf("YES\n");
}
}
}
for(int i=0;i<q;i++)
{
string x,y;
cin>>x>>y;
int kx=find(ma[x]);
int ky=find(ma[y]);
if(kx==ky||find(ma[x]+n)==find(ma[y]+n)) printf("1\n");
else if(find(ma[x])==find(ma[y]+n)||find(ma[x]+n)==find(ma[y]))
printf("2\n");
else
printf("3\n");
}
return 0;
}

  

  

最新文章

  1. 使用T4模板生成代码的学习
  2. C# 通过后台获取浏览器域名
  3. DIV指令一般用法
  4. Linux 命令 - lsof: 列出打开的文件
  5. top使用命令
  6. 初级AD域渗透系列
  7. PHP全选择删除功能
  8. eclipse创建web项目修改路径
  9. BZOJ_1085_[SCOI2005]骑士精神_IDDFS
  10. 01 Java jdk环境配置
  11. 使用jQuery+huandlebars遍历if判断不足引用helper
  12. session(概念、session对象的获取、删除、验证)
  13. Android TextView 支持的HTML标签
  14. [LeetCode] 208. Implement Trie (Prefix Tree) ☆☆☆
  15. MySQL防范SQL注入风险
  16. &lt;&lt;高级计算机网络&gt;&gt;(Advaned Computer Networks) 徐恪 徐明伟 陈文龙 马东超
  17. Android版本信息及与Linux和Java的关系
  18. 3-Python内置结构-列表
  19. java生成webservice
  20. 模块与包&amp;常用模块

热门文章

  1. IIS中X509Certificate遇见的问题
  2. JAVA利用poi获取world文件内容
  3. Jerry的WebClient UI 42篇原创文章合集
  4. 【转载】#443 - An Interface Cannot Contain Fields
  5. 笔记本win8系统共享wifi上网方法
  6. 泛型约束-swift
  7. React中最基础的jsx语法
  8. Ubuntu不支持rpm安装软件解决方法
  9. (第四场)F Beautiful Garden
  10. 使用TimeSpan对象获取时间间隔