Play on Words

来源:互联网 发布:5sing音乐软件 编辑:程序博客网 时间:2024/06/15 10:17

题目描述

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. 

输入描述:

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.        

输出描述:

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.".        
示例1

输入

32acmibm3acmmalformmouse2okok

输出

The door cannot be opened.Ordering is possible.The door cannot be opened.
#include<iostream>#include<stdio.h>#include<string.h>#include<cmath>#include<queue>#include<stack>#include<set>#include<time.h>#include<map>#include<algorithm>#define ll long long#define eps 1e-5#define oo 1000000007#define pi acos(-1.0)#define MAXN 100005#define MAXM 500005using namespace std; int P[2][26],father[26];bool used[26];char s[1005];int getfather(int x){       if (father[x]==x) return x;       return father[x]=getfather(father[x]);}int main(){              int i,cases,n,m,x,y,t1,t2;       scanf("%d",&cases);       while (cases--)       {               scanf("%d",&n);               memset(used,false,sizeof(used));               memset(P,0,sizeof(P));               for (i=0;i<26;i++) father[i]=i;               for (i=1;i<=n;i++)               {                      scanf("%s",s+1);                      x=s[1]-'a',y=s[strlen(s+1)]-'a';                      P[0][x]++,P[1][y]++;                      father[getfather(x)]=getfather(y);                      used[x]=used[y]=true;                      m=getfather(x);               }               if (n==1)               {                      printf("Ordering is possible.\n");                      continue;               }               for (i=0;i<26;i++)                  if (used[i] && getfather(i)!=m) break;               if (i<26)               {                      printf("The door cannot be opened.\n");                      continue;               }               t1=t2=0;               for (i=0;i<26;i++)               {                      if (P[0][i]==P[1][i]) continue;                      if (P[0][i]+1==P[1][i]) t1++;                      else                      if (P[1][i]+1==P[0][i]) t2++;                      else break;               }               if (i<26 || !(t1==1 && t2==1 || !t1 && !t2))                      printf("The door cannot be opened.\n");                 else                      printf("Ordering is possible.\n");       }       return 0;}


原创粉丝点击