• (判断欧拉回路)poj 1368


    Play on Words
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 10056   Accepted: 3447

    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.
    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<cmath>
    #include<algorithm>
    #include<cstdlib>
    #include<string>
    #include<vector>
    using namespace std;
    vector<int> e[27];
    int tt,n,in[27],out[27],vis[27];
    char s[100010];
    void dfs(int x)
    {
          vis[x]=1;
          for(int i=0;i<e[x].size();i++)
                if(vis[e[x][i]]==0)
                      dfs(e[x][i]);
    }
    bool ok(int x)
    {
          dfs(x);
          for(int i=0;i<26;i++)
                if(vis[i]==0&&e[i].size()!=0)
                      return false;
          return true;
    }
    int main()
    {
          scanf("%d",&tt);
          while(tt--)
          {
                memset(in,0,sizeof(in));
                memset(out,0,sizeof(out));
                memset(vis,0,sizeof(vis));
                int len,a,b;
                scanf("%d",&n);
                for(int i=0;i<27;i++)
                      e[i].clear();
                for(int i=0;i<n;i++)
                {
                      scanf("%s",s);
                      len=strlen(s);
                      a=s[0]-'a',b=s[len-1]-'a';
                      out[a]++,in[b]++;
                      e[a].push_back(b);
                      e[b].push_back(a);
                }
                if(!ok(a))
                {
                      printf("The door cannot be opened.
    ");
                      continue;
                }
                bool flag=false;
                int j;
                for(j=0;j<26;j++)
                {
                      if(in[j]!=out[j])
                      {
                            if(in[j]<out[j])
                            {
                                  if(in[j]-out[j]==-1&&flag==0)
                                  {
                                        flag=1;
                                  }
                                  else
                                  {
                                        break;
                                  }
                            }
                      }
                }
                if(j<26)
                      printf("The door cannot be opened.
    ");
                else
                      printf("Ordering is possible.
    ");
          }
          return 0;
    }
    

      注意连通性

  • 相关阅读:
    分段随机实践—模拟线上流量
    基于docker的分布式性能测试框架功能验证(二)
    将博客搬家至CSDN
    考研机试 98.棋盘游戏
    考研机试 100.路径打印
    考研机试 102.计算表达式
    考研机试 97.数字反转
    考研机试 90.简单密码
    考研机试 87.鸡兔同笼
    考研机试 79.浮点数加法
  • 原文地址:https://www.cnblogs.com/a972290869/p/4245524.html
Copyright © 2020-2023  润新知