国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計 > 正文

D. Mahmoud and a Dictionary

2019-11-10 21:15:29
字體:
供稿:網(wǎng)友

D. Mahmoud and a Dictionarytime limit per test4 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard output

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.

Examplesinput
3 3 4hate love like1 love like2 love hate1 hate likelove likelove hatelike hatehate likeoutput
YESYESNO1222input
8 6 5hi welcome hello ihateyou goaway dog cat rat1 hi welcome1 ihateyou goaway2 hello ihateyou2 hi goaway2 hi hello1 hi hellodog catdog hihi helloihateyou goawaywelcome ihateyououtput
YESYESYESYESNOYES33112

嗯,帶權(quán)并查集的應(yīng)用。沒有學(xué)習(xí)過帶權(quán)并查集的可以先看下這里:

http://blog.csdn.net/harlow_cheng/article/details/52737486

然后就沒什么多說的了。就兩種關(guān)系,應(yīng)該說是比較基本的。

#include <bits/stdc++.h>using namespace std;int n,m,q;const int MAXN=1e5+7;const int mod=1e9+7;int pre[MAXN],relation[MAXN];map<string,int>num;string s1,s2;int findx(int x){    if(pre[x]==x)    {        return x;    }    int order=pre[x];    pre[x]=findx(pre[x]);    relation[x]=(relation[x]+relation[order])%2;    return pre[x];}int main(){    int i;    scanf("%d%d%d",&n,&m,&q);    for(i=0;i<n;++i)    {        cin>>s1;        num[s1]=i;    }    for(i=0;i<n;++i)    {        pre[i]=i;        relation[i]=0;    }    int x,y,z;    while(m--)    {        cin>>z>>s1>>s2;        z--;        x=num[s1],y=num[s2];        int a=findx(x),b=findx(y);        if(a!=b)//關(guān)系還沒有建立過        {            puts("YES");            //更新結(jié)點值            pre[b]=a;            relation[b]=(relation[x]-relation[y]+z+2)%2;        }        else//關(guān)系已經(jīng)建立        {            int p=(relation[x]-relation[y]+2)%2;//得到關(guān)系            if(p==z)puts("YES");            else puts("NO");        }    }    while(q--)    {        cin>>s1>>s2;        x=num[s1];        y=num[s2];        int a=findx(x),b=findx(y);        if(a!=b)puts("3");//沒建立過聯(lián)系        else        {            int p=(relation[x]-relation[y]+2)%2;            printf("%d/n",p+1);        }    }}


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 体育| 湾仔区| 松阳县| 收藏| 南康市| 甘孜县| 衡阳县| 聊城市| 彭水| 五大连池市| 扎兰屯市| 忻城县| 通山县| 莱西市| 长丰县| 交口县| 手游| 乐山市| 常山县| 沙湾县| 尼玛县| 崇义县| 即墨市| 甘谷县| 老河口市| 宝山区| 临颍县| 霍林郭勒市| 泾源县| 寿阳县| 南京市| 额尔古纳市| 定西市| 麻阳| 香港 | 电白县| 商水县| 宝丰县| 鹿邑县| 康马县| 前郭尔|