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
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
Output
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
#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;
}