hdu1116有向图判断欧拉通路判断

Play on Words

Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 4263    Accepted Submission(s): 1384

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.

有向图欧拉通路判断题:

•欧拉路径:从图的某一个顶点出发,图中每条边走且仅走一次,最后到达某一个点;如果这样的路径存在,则称之为欧拉路径。
 
 
•无向图欧拉路径存在条件:至多有两个顶点的度数为奇数,其他顶点的度数均为偶数。
 
 
•有向图欧拉路径存在条件:至多有两个顶点的入度和出度绝对值差1(若有两个这样的顶点,则必须其中一个出度大于入度,另一个入度大于出度),其他顶点的入度与出度相等。
 
 
 
•半欧拉图 :具有欧拉通路而无欧拉回路的图
 
•欧拉回路:从图的某一个顶点出发,图中每条边走且仅走一次,最后回到出发点;如果这样的回路存在,则称之为欧拉回路。
 
 
•无向图欧拉回路存在条件:所有顶点的度数均为偶数并且连通。
 
•有向图欧拉回路存在条件:所有顶点的入度和出度相等并且连通。
 
 
 1 #include <iostream>
 2 #include <stdio.h>
 3 #include <algorithm>
 4 #include <string.h>
 5 #include <math.h>
 6 #include <vector>
 7 #include <stack>
 8 using namespace std;
 9 #define ll long long int
10 int a[30];
11 int b[30];
12 int c[30];
13 int find(int x)
14 {
15     if(x!=a[x])
16         a[x]=find(a[x]);
17     return a[x];
18 }
19 int main()
20 {
21     int n,m,r;
22     scanf("%d",&n);
23     for(r=0; r<n; r++)
24     {
25         cin>>m;
26         int i,x,y;
27         for(i=1; i<30; i++)
28             a[i]=i;
29         memset(b,0,sizeof(b));
30         memset(c,0,sizeof(c));
31         char aa[1050];
32         for(i=1; i<=m; i++)
33         {
34             scanf("%s",aa);
35             int t=strlen(aa);
36             x=aa[0]-'a'+1;
37             y=aa[t-1]-'a'+1;
38             b[x]++;
39             c[y]++;
40             int fx=find(x);
41             int fy=find(y);
42             if(fy!=fx)
43                 a[fy]=fx;
44         }
45         int suma=0,sumb=0;;
46         int fla=0;
47         for(i=1; i<30; i++)
48         {
49             if((b[i]||c[i])&&a[i]==i)
50                 fla++;
51         }
52         if(fla==1)
53         {
54             for(i=1;i<30;i++)
55             {
56                 if(b[i]!=c[i])
57                 {
58                     if(b[i]-c[i]==1)
59                      suma++;
60                      else if(c[i]-b[i]==1)
61                      sumb++;
62                      else sumb+=1000;
63                 }
64             }
65               if(suma<=1&&sumb<=1)
66             cout<<"Ordering is possible."<<endl;
67         else cout<<"The door cannot be opened."<<endl;
68         }
69         else
70         cout<<"The door cannot be opened."<<endl;
71     }
72 }
View Code
原文地址:https://www.cnblogs.com/ERKE/p/3257659.html