首页 > 其他分享 >D. Mahmoud and a Dictionary(种类并查集)

D. Mahmoud and a Dictionary(种类并查集)

时间:2022-11-18 16:36:28浏览次数:55  
标签:Mahmoud Dictionary int 查集 relations ran relation words find


D. Mahmoud and a Dictionary

time limit per test

4 seconds

memory limit per test

256 megabytes

input

standard input

output

standard 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 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.

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

 

题意:
给你一些单词,然后输入1,表示后边两个单词是近义词,判断是否合法,合法输出YES,并存起来;不合法输出NO,不进行操作。再给出一对单词判断这两个单词的关系,近义词输出1,反义词输出2,无关输出3。

题解:map储存单词+种类并查集,比较简单的种类并查集。

 

#include <stdio.h>
#include <iostream>
#include <string.h>
#include <math.h>
#include <algorithm>
#include <stdlib.h>
#include <queue>
#include <vector>
#include <map>
using namespace std;

const int inf = 0x3f3f3f3f;
const int Max = 100100;
typedef long long int LL;
map<string, int>str;

int fa[Max], ran[Max];

int find(int x)
{
if(fa[x] == x)
return fa[x];
int y = fa[x];
fa[x] = find(fa[x]);
ran[x] = (ran[x] + ran[y])%2;
return fa[x];
}

int main()
{
int j, i, m, q, f, n;
char s[25], v[25], u[25];
int h = 0;
scanf("%d %d %d\n", &n, &m, &q);
for(i = 1; i <= n; i++)
{
scanf("%s", s);
str[s] = i;
fa[i] = i;
ran[i] = 0;
}
while(m--)
{
scanf("%d %s %s", &f, u, v);
int x = str[u];
int y = str[v];
if(f == 1)
{
if(find(x) == find(y)&&ran[x] != ran[y])
{
cout<<"NO"<<endl;
continue;
}
else
{
int xr = find(x);
int yr = find(y);
fa[xr] = yr;
ran[xr] = (ran[x] + ran[y])%2;
cout<<"YES"<<endl;
}
}
else
{
if(find(x) == find(y)&&ran[x] == ran[y])
{
cout<<"NO"<<endl;
continue;
}
else
{
int xr = find(x);
int yr = find(y);
fa[xr] = yr;
ran[xr] = (ran[x] + ran[y] + 1)%2;
cout<<"YES"<<endl;
}
}
}
while(q--)
{
scanf("%s %s", u, v);
int x = str[u];
int y = str[v];
if(find(x) == find(y))
{
if(ran[x] == ran[y])
printf("1\n");
else
printf("2\n");
}
else
printf("3\n");
}
return 0;
}

 

 

标签:Mahmoud,Dictionary,int,查集,relations,ran,relation,words,find
From: https://blog.51cto.com/u_15879559/5868809

相关文章

  • .NET深入了解哈希表和Dictionary
    引子问题:给定一串数字{1,2,5,7,15,24,33,52},如何在时间复杂度为O(1)下,对数据进行CURD?数组:我创建一个Length为53的数组,将元素插入相同下标处,是不是就可以实现查找复杂......
  • Objective-C语法之NSDictionary和NSMutableDictionary
    Java有Map,可以把数据以键值对的形式储存起来,取值的时候通过key就可以直接拿到对应的值,方便快捷。在Objective-C语言中,词典就是做这样的事情的,和NSArray一样,一个词典对象也能......
  • 并查集
    并查集本质上是维护一个森林,初始时森林里每个点是一个集合,之后将集合合并,查找一个点所在集合的代表元素,将两个集合的代表元素进行合并。使用时不要忘记初始化!在一般情况下......
  • KeyValuePair 和 Dictionary 的关系
    https://www.likecs.com/show-205081943.html#sc=466.6666564941406KeyValuePair 和 Dictionary 的关系1、KeyValuePair    a、KeyValuePair是一个结构体(struc......
  • 20221113_T1A-_并查集
    题意在一个文件目录下有\(n\)个不同的文件,每个文件都有一个文件名,其中第\(i\)个文件的文件名为\(s_i\)。这些文件名两两不同。小C希望更改一部分文件的文件名,他......
  • C# 之 Dictionary 详解
    https://blog.csdn.net/dmlk31/article/details/111206272.说明1、必须包含名空间System.Collection.Generic2、Dictionary里面的每一个元素都是一个键值对(由二个元素组......
  • 浅谈离线树链信息的一种并查集做法
    出处problem一棵树,点上有一些满足结合律的信息,\(m\)次询问求出一条链上的点权之“和”,允许离线。\(n,m\leq10^5\)。solution......
  • 【数据结构-树】并查集的基本操作(待整理)
    目录1数据结构定义2初始化3查找操作4并操作1数据结构定义#defineMAX50intUFSets[MAX];//并查集2初始化//参数:并查集SvoidInit(intS[]){inti;......
  • 20221111_T1B_线段树优化建图/并查集
    题意给定一个字符串,其中只有a和b,现在一个字符能够跳到与之中间a的个数范围在\([l,r]\)的东西。题解赛时得分:100/100对于一个东西,显然如果将能相互到达连边,那么......
  • C# Hashtable、HashSet和Dictionary的区别
    原文网址:https://blog.csdn.net/yyyyz999/article/details/1248512251.Hashtable哈希表(HashTable)表示键/值对的集合。在.NETFramework中,Hashtable是System.Collect......