• uva 10129


    Play on Words

    Some of the secret doors contain a very interesting word puzzle. The team of archaeologists has to solve it to open that doors. Because there is no other way to open the doors, the puzzle is very important for us.

    There is a large number of magnetic plates on every door. Every plate has one word written on it. The plates must be arranged into a sequence in such a way that every word begins with the same letter as the previous word ends. For example, the word ``acm'' can be followed by the word ``motorola''. Your task is to write a computer program that will read the list of words and determine whether it is possible to arrange all of the plates in a sequence (according to the given rule) and consequently to open the door.

    Input Specification

    The input consists of T test cases. The number of them (T) is given on the first line of the input file. Each test case begins with a line containing a single integer number Nthat indicates the number of plates (1 <= N <= 100000). Then exactly Nlines follow, each containing a single word. Each word contains at least two and at most 1000 lowercase characters, that means only letters 'a' through 'z' will appear in the word. The same word may appear several times in the list.

    Output Specification

    Your program has to determine whether it is possible to arrange all the plates in a sequence such that the first letter of each word is equal to the last letter of the previous word. All the plates from the list must be used, each exactly once. The words mentioned several times must be used that number of times.

    If there exists such an ordering of plates, your program should print the sentence "Ordering is possible.". Otherwise, output the sentence "The door cannot be opened.".

    Sample Input

    3
    2
    acm
    ibm
    3
    acm
    malform
    mouse
    2
    ok
    ok
    

    Output for the Sample Input

    The door cannot be opened.
    Ordering is possible.
    The door cannot be opened.
    #include <iostream>
    #include <stack>
    #include <cstring>
    #include <cstdio>
    #include <string>
    #include <algorithm>
    #include <queue>
    #include <set>
    #include <map>
    #include <fstream>
    #include <stack>
    #include <list>
    #include <sstream>
    #include <cmath>
    
    using namespace std;
    
    #define ms(arr, val) memset(arr, val, sizeof(arr))
    #define mc(dest, src) memcpy(dest, src, sizeof(src))
    #define N 27
    #define INF 0x3fffffff
    #define vint vector<int>
    #define setint set<int>
    #define mint map<int, int>
    #define lint list<int>
    #define sch stack<char>
    #define qch queue<char>
    #define sint stack<int>
    #define qint queue<int>
    int in[N], out[N], fa[N], visit[N];
    
    char word[1005];
    
    void init()
    {
        ms(in, 0);
        ms(out, 0);
        ms(visit, 0);
        ms(fa, -1);
    }
    
    int find(int x)
    {
        return fa[x] == -1 ? x : fa[x] = find(fa[x]);
    }
    
    void _union(int x, int y)
    {
        int fx = find(x), fy = find(y);
        if (fx != fy)
        {
            fa[fx] = fy;
        }
    }
    
    bool check()
    {
        int r1, r2;
        r1 = 0;
        for (int i = 0; i < N; i++)
        {
            if (visit[i] && fa[i] == -1)
            {
                r1++;
            }
        }
        if (r1 != 1)
        {
            return false;
        }
        r1 = r2 = 0;
    
        for (int i = 0; i < N; i++)
        {
            if (visit[i])
            {
                if (in[i] != out[i])
                {
                    if (in[i] - out[i] == 1)
                    {
                        r1++;
                    }
                    else
                        if (in[i] - out[i] == -1)
                        {
                            r2++;
                        }
                        else
                            return false;
    
                }
            }
        }
        return (r1 + r2 <= 2);//有向图的欧拉路或者是欧拉回路
    }
    
    int main()
    {
        int t, n, s, e;
        scanf("%d", &t);
        while (t--)
        {
            init();
            scanf("%d", &n);
            while (n--)
            {
                scanf("%s", word);
                s = word[0] - 'a';
                e = word[strlen(word) - 1] - 'a';
                _union(s, e);
                out[s]++;
                in[e]++;
                visit[s] = visit[e] = 1;
            }
    
            if (check())
            {
                printf("Ordering is possible.
    ");
            }
            else
            {
                printf("The door cannot be opened.
    ");
            }
        }
        return 0;
    }
  • 相关阅读:
    android UI 适配小节
    Android中的倒计时实现
    几种适配器&观察者&ListView之间的那点事
    Service stopSelf(int statId)和onStartcommand(Intent intent,int flags,int startId)
    java 虚函数
    java 重载和多态的区别
    小程序体验版路径以及参数携带
    微信小程序--上传图片公用组件
    微信小程序页面返回
    js兼容安卓和IOS的复制文本到剪切板
  • 原文地址:https://www.cnblogs.com/jecyhw/p/3914706.html
Copyright © 2020-2023  润新知