hdu 2545 Degree Sequence of Graph G

Degree Sequence of Graph G

Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 651    Accepted Submission(s): 243

Problem Description
Wang Haiyang is a strong and optimistic Chinese youngster. Although born and brought up in the northern inland city Harbin, he has deep love and yearns for the boundless oceans. After graduation, he came to a coastal city and got a job in a marine transportation company. There, he held a position as a navigator in a freighter and began his new life.

The cargo vessel, Wang Haiyang worked on, sails among 6 ports between which exist 9 routes. At the first sight of his navigation chart, the 6 ports and 9 routes on it reminded him of Graph Theory that he studied in class at university. In the way that Leonhard Euler solved The Seven Bridges of Knoigsberg, Wang Haiyang regarded the navigation chart as a graph of Graph Theory. He considered the 6 ports as 6 nodes and 9 routes as 9 edges of the graph. The graph is illustrated as below.



According to Graph Theory, the number of edges related to a node is defined as Degree number of this node.

Wang Haiyang looked at the graph and thought, If arranged, the Degree numbers of all nodes of graph G can form such a sequence: 4, 4, 3,3,2,2, which is called the degree sequence of the graph. Of course, the degree sequence of any simple graph (according to Graph Theory, a graph without any parallel edge or ring is a simple graph) is a non-negative integer sequence?

Wang Haiyang is a thoughtful person and tends to think deeply over any scientific problem that grabs his interest. So as usual, he also gave this problem further thought, As we know, any a simple graph always corresponds with a non-negative integer sequence. But whether a non-negative integer sequence always corresponds with the degree sequence of a simple graph? That is, if given a non-negative integer sequence, are we sure that we can draw a simple graph according to it.?

Let's put forward such a definition: provided that a non-negative integer sequence is the degree sequence of a graph without any parallel edge or ring, that is, a simple graph, the sequence is draw-possible, otherwise, non-draw-possible. Now the problem faced with Wang Haiyang is how to test whether a non-negative integer sequence is draw-possible or not. Since Wang Haiyang hasn't studied Algorithm Design course, it is difficult for him to solve such a problem. Can you help him?

 

 

Input
The first line of input contains an integer T, indicates the number of test cases. In each case, there are n+1 numbers; first is an integer n (n<1000), which indicates there are n integers in the sequence; then follow n integers, which indicate the numbers of the degree sequence.

 

 

Output
For each case, the answer should be "yes"or "no" indicating this case is "draw-possible" or "non-draw-possible"

 

 

Sample Input
2 6 4 4 3 3 2 2 4 2 1 1 1
 

 

Sample Output
yes no
 
 
该题就是判断是否能够构成一个图
就是将给我们的数进行排序小到大
然后把最大的max去掉,把该数的之前的max个数减一
重复进行
若果这个max比之前的数都大,那么不能
若果中间出现负数,不能
否则可以
 
 1 #include <iostream>
 2 #include <algorithm>
 3 
 4 
 5 using namespace std;
 6 
 7 int a[1006];
 8 
 9 int main()
10 {
11     int t;
12     cin>>t;
13     while(t--)
14     {
15         int i = 0;
16         int j =0;
17         int n;
18         cin >> n;
19 
20         for(i = 0; i< n; i++)
21             cin>>a[i];
22 
23 
24         while(n)
25         {
26             sort(a,a+n);
27             for(i = n-1,j = n-2; j >= 0; j--)
28                 if(a[i] > 0 && a[j] > 0)
29                     {
30                         a[i] --;
31                         a[j] --;
32                     }
33                 else
34                     break;
35 
36                 if(a[i])
37                     break;
38 
39                 n--;
40         }
41     if(n)
42        cout<<"no\n";
43     else
44         cout<<"yes\n";
45     }
46     return 0;
47 }

 

 

你可能感兴趣的:(sequence)