HDOJ Play on Words

本文深入探讨了游戏开发领域的核心技术,包括Unity3D、Cocos2d-X等游戏引擎的使用,以及OpenGL ES、OpenCV等图像处理技术在游戏中的应用。同时,还涉及了游戏程序设计、游戏美术、游戏策划等多方面的内容。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 

 Play on Words

http://acm.hdu.edu.cn/diy/contest_showproblem.php?pid=1011&cid=12467&hide=0

Time Limit : 10000/5000ms (Java/Other)   Memory Limit : 65536/32768K (Java/Other)
Total Submission(s) : 7   Accepted Submission(s) : 2
Font: Times New Roman | Verdana | Georgia
Font Size: ← →

Problem Description

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

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

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

Sample Output

The door cannot be opened.
Ordering is possible.
The door cannot be opened.

Source

Central Europe 1999
 
这个题一开始不会做,后面看了一牛的代码,恍然额
大牛的代码如下:
 

#include <iostream>
#include <cstring>
using namespace std;


const int N = 27;

typedef struct
{
    int in_degree;//记录入度
    int out_degree;//记录出度
}Point;

typedef struct
{
    int parent;
    int height;
}Node;

Point degree[N];
Node UFSet[N];
bool Visited[N];
int record[N], cnt;//此数组用于记录出现的字符


void init()
{//初始化入度和出度,初始化并查集
    int i;
    for(i = 0; i < N; i++)
    {
        degree[i].in_degree = degree[i].out_degree = 0;
        UFSet[i].parent = i;
        UFSet[i].height = 1;
        Visited[i] = false;
    }
    cnt = 0;
}

int find(int x)
{//并查集之查操作
    while(x != UFSet[x].parent)
        x = UFSet[x].parent;
    return x;
}

void merge(int x, int y)
{
    if(x == y)
        return ;
    if(UFSet[x].height == UFSet[y].height)
    {
        UFSet[y].parent = x;
        UFSet[x].height++;
    }
    else if(UFSet[x].height > UFSet[y].height)
        UFSet[y].parent = x;
    else
        UFSet[x].parent = y;
}

int main()
{
    int T;
    int n, a, b , i;
    int sum;
    bool flag;
    char str[1003];

    scanf("%d", &T);
    while(T--)
    {
        scanf("%d", &n);
        init();
        for(i = 0; i < n; i++)
        {
            scanf("%s", str);
            a = str[0] - 'a';
            b = str[strlen(str) - 1] - 'a';

            if(!Visited[a])
            {
                Visited[a] = true;
                record[cnt++] = a;
            }
            if(!Visited[b])
            {
                Visited[b] = true;
                record[cnt++] = b;
            }
           
            /**//////////入度,出度的统计///////////

            degree[b].in_degree++;
            degree[a].out_degree++;

            /**////////////并查集操作/////////
            a = find(a);
            b = find(b);
            merge(a, b);
        }
       
        flag = false;
        a = find(record[0]);

        for(i = 1; i < cnt; i++)
            if(a != find(record[i]))
            {
                flag = true;
                break;
            }

        if(flag)
        {//此为用并查集判连通
            printf("The door cannot be opened.\n");
            continue;
        }
       
        sum = a = b = 0; flag = true;
        for(i = 0; i < cnt && sum < 3; i++)
        {
            if(degree[record[i]].in_degree != degree[record[i]].out_degree)
            {
                sum++;

                if(degree[record[i]].in_degree ==  degree[record[i]].out_degree + 1)
                    a++;
                else if(degree[record[i]].in_degree + 1 ==  degree[record[i]].out_degree)
                    b++;
                else
                {
                    flag = false;
                    break;
                }
            }
        }

        if(flag && a == b)
            printf("Ordering is possible.\n");
        else
            printf("The door cannot be opened.\n");

    }
        return 0;
}

 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值