2017 word finnal i Secret Chamber at Mount Rushmore

来源:互联网 发布:中国电信监控下载软件 编辑:程序博客网 时间:2024/05/21 14:51
By now you have probably heard that there is a spectacular stone sculpture featuring four famous U.S. presidents at Mount Rushmore. However, very few people know that this monument contains a secret chamber. This sounds like something out of a plot of a Hollywood movie, but the chamber really exists. It can be found behind the head of Abraham Lincoln and was designed to serve as a Hall of Records to store important historical U.S. documents and artifacts. Historians claim that the construction of the hall was halted in 1939 and the uncompleted chamber was left untouched until the late 1990s, but this is not the whole truth.

In 1982, the famous archaeologist S. Dakota Jones secretly visited the monument and found that the chamber actually was completed, but it was kept confidential. This seemed suspicious and after some poking around, she found a hidden vault and some documents inside. Unfortunately, these documents did not make any sense and were all gibberish. She suspected that they had been written in a code, but she could not decipher them despite all her efforts.

Earlier this week when she was in the area to follow the ACM-ICPC World Finals, Dr. Jones finally discovered the key to deciphering the documents, in Connolly Hall of SDSM&T. She found a document that contains a list of translations of letters. Some letters may have more than one translation, and others may have no translation. By repeatedly applying some of these translations to individual letters in the gibberish documents, she might be able to decipher them to yield historical U.S. documents such as the Declaration of Independence and the Constitution. She needs your help.

You are given the possible translations of letters and a list of pairs of original and deciphered words. Your task is to verify whether the words in each pair match. Two words match if they have the same length and if each letter of the first word can be turned into the corresponding letter of the second word by using the available translations zero or more times.

Input

The first line of input contains two integers mm (1m5001≤m≤500) and nn (1n501≤n≤50), where mm is the number of translations of letters and nn is the number of word pairs. Each of the next mm lines contains two distinct space-separated letters aa and bb, indicating that the letter aa can be translated to the letter bb. Each ordered pair of letters (a,b)(a,b) appears at most once. Following this are nn lines, each containing a word pair to check. Translations and words use only lowercase letters ‘a’–‘z’, and each word contains at least 11 and at most 5050 letters.

Output

For each pair of words, display yes if the two words match, and no otherwise.

Sample Input 1Sample Output 1
9 5c ti rk po cr ot et fu hw pwe wecan thework peopleit ofout the
yesnonoyesyes

Sample Input 2Sample Output 2

3 3a cb aa baaa abcabc aaaacm bcm
yesnoyes
题目很简单,给完对应关系,只要标记好能对应的字符就好了(直接对应或间接对应)

ac代码:

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;
char a[1000],b[1000];
int data[30][30];
int main()
{
    int n,m;
    while(cin>>n>>m)
    {
        char x,y;
        memset(data,0,sizeof(data));
        for(int i=1; i<=n; i++)
        {
            getchar();
            scanf("%c %c",&x,&y);
            data[x-'a'][y-'a']=1;
        }
        for(int i=0; i<26; i++)
        {
            for(int j=0; j<26; j++)
            {
                if(data[i][j]==1)
                {
                    for(int k=0; k<26; k++)
                    {
                        if(data[k][i]==1)
                            data[k][j]=1;
                    }
                }
            }
        }
        for(int p=1; p<=m; p++)
        {
            scanf("%s %s",a,b);
            int lena=strlen(a);
            int lenb=strlen(b);
            int i=0,j=0,flag=0;
            while(i<lena&&j<lenb&&i==j&&flag==0)
            {
                if(a[i]==b[j]||data[a[i]-'a'][b[j]-'a']==1)
                {
                    i++;
                    j++;
                }
                else
                flag=1;
            }
            if(lena==lenb&&flag==0)
                cout<<"yes"<<endl;
            else
                cout<<"no"<<endl;
        }
    }
    return 0;
}

原创粉丝点击