题目名称:Play on Words
题目链接:Play on Words
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 wordmotorola’’. 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.
解题思路
使用并查集检查图是否连通,通过判断点的出入度来判断是否符合条件,其中起点和终点可能存在出度-入度的绝对值相差为一的情况
完整代码
#include<iostream>
#include<cmath>
#include<string>
#include<cstdio>
using namespace std;
#define N 32
int f[N],degreein[N],degreeout[N],vis[N];
string s;
int n,t;
int find(int x){
return x==f[x]?x:f[x]=find(f[x]);
}
void Union(int x,int y){
x=find(x);
y=find(y);
if(x!=y){
f[y]=x;
}
}
void init(){
for(int i=0;i<N;i++){
f[i]=i;
degreein[i]=degreeout[i]=vis[i]=0;
}
}
int main()
{
cin>>t;
while(t--){
init();
cin>>n;
getchar();
for(int i=0;i<n;i++){
cin>>s;
int u=s[0]-'a',v=s[s.length()-1]-'a';
vis[u]=1;
vis[v]=1;
degreein[u]++;
degreeout[v]++;
Union(u,v);
}
int a=0,b=0,c=0,d=0;
for(int i=0;i<N;i++){
if(vis[i]){
if(f[i]==i) c++;
if(degreein[i]==degreeout[i]) continue;
if(degreein[i]+1==degreeout[i]) a++;
else if(degreein[i]==degreeout[i]+1) b++;
else d++;
}
}
if(c>1||d>1) cout<<"The door cannot be opened.\n";
else if(a==0&&b==0||a==1&&b==1) cout<<"Ordering is possible.\n";
else cout<<"The door cannot be opened.\n"<<endl;
}
return 0;
}
遇到的问题
修改了一上午的bug总是和样例不同,参照别人的博客修改也不对,下午的时候发现并查集寻找父节点的那部分程序写错了,唉,粗心大意害死人啊。

本文探讨了PlayonWords谜题的解决方案,该谜题要求将一系列单词按特定规则排列,使得每个单词的首字母与前一个单词的尾字母相同。文章详细介绍了使用并查集检查图连通性和通过点的出入度判断排列可能性的方法。
376

被折叠的 条评论
为什么被折叠?



