zoukankan      html  css  js  c++  java
  • Codeforces Round #396 (Div. 2) D. Mahmoud and a Dictionary

    地址:http://codeforces.com/contest/766/problem/D

    题目:

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

     思路:带权并查集模板题。

     1 #include <bits/stdc++.h>
     2 
     3 using namespace std;
     4 
     5 #define MP make_pair
     6 #define PB push_back
     7 typedef long long LL;
     8 typedef pair<int,int> PII;
     9 const double eps=1e-8;
    10 const double pi=acos(-1.0);
    11 const int K=1e5+7;
    12 const int mod=1e9+7;
    13 
    14 
    15 int n,m,q,f[K],rl[K];
    16 map<string,int>hs;
    17 string sa,sb;
    18 
    19 int fd(int x)
    20 {
    21     if(f[x]==x) return x;
    22     int fa=f[x];
    23     f[x]=fd(f[x]);
    24     rl[x]=(rl[x]+rl[fa])%2;
    25     return f[x];
    26 }
    27 
    28 int main(void)
    29 {
    30     cin>>n>>m>>q;
    31     for(int i=1;i<=n;i++)
    32         cin>>sa,hs[sa]=i,f[i]=i;
    33     for(int i=1,op;i<=m;i++)
    34     {
    35         cin>>op>>sa>>sb;
    36         int x=hs[sa],y=hs[sb];
    37         int fx=fd(x),fy=fd(y);
    38         op--;
    39         if(fx!=fy)
    40         {
    41             puts("YES");
    42             f[fy]=fx;
    43             rl[fy]=(op+rl[x]+rl[y])%2;
    44         }
    45         else
    46         {
    47             if((rl[x]+rl[y])%2==op)
    48                 puts("YES");
    49             else
    50                 puts("NO");
    51         }
    52     }
    53     for(int i=1,ans;i<=q;i++)
    54     {
    55         cin>>sa>>sb;
    56         int x=hs[sa],y=hs[sb];
    57         int fx=fd(x),fy=fd(y);
    58         if(fx!=fy)
    59             ans=3;
    60         else if((rl[x]+rl[y])%2==0)
    61             ans=1;
    62         else
    63             ans=2;
    64         printf("%d
    ",ans);
    65     }
    66     return 0;
    67 }

     

  • 相关阅读:
    zabbix api
    pymssql
    ssh别名登录,非常适合从跳板机登录其他主机
    apache httpd 不记录head 的请求。
    mysqldump 参数--single-transaction
    Detect operating system [zabbix]
    mysql 审计server_audit 模块
    Execl矩阵如何转化成Pajek的net文件
    4、keepalived高可用nginx负载均衡
    3、使用keepalived高可用LVS实例演示
  • 原文地址:https://www.cnblogs.com/weeping/p/6419048.html
Copyright © 2011-2022 走看看