A10836 | Mahmoud and a Dictionary
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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<=10^{5}$ , $1<=m,q<=10^{5}$ ) 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 $a_{1},a_{2},...,a_{n}$ 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 $x_{i}$ and $y_{i}$ which has appeared in the dictionary words. If $t=1$ , that means $x_{i}$ has a synonymy relation with $y_{i}$ , otherwise $x_{i}$ has an antonymy relation with $y_{i}$ .
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.
The second line contains $n$ distinct words $a_{1},a_{2},...,a_{n}$ 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 $x_{i}$ and $y_{i}$ which has appeared in the dictionary words. If $t=1$ , that means $x_{i}$ has a synonymy relation with $y_{i}$ , otherwise $x_{i}$ has an antonymy relation with $y_{i}$ .
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.
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.
输入输出样例
输入 #1
3 3 4 hate love like 1 love like 2 love hate 1 hate like love like love hate like hate hate like
输出 #1
YES YES NO 1 2 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
输出 #2
YES YES YES YES NO YES 3 3 1 1 2
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted