CSU 1659: Graph Center (SPFA)

Source: Internet
Author: User

CSU 1659: Graph Center (SPFA)

1659: Graph CenterTime Limit: 1 Sec Memory Limit: 128 MB
Submit: 63 Solved: 25
[Submit] [Status] [Web Board] Description

The center of a graph is the set of all vertices of minimum eccentricity, that is, the set of all vertices A where the greatest distance d (A, B) to other vertices B is minimal. equivalently, it is the set of vertices with eccentricity equal to the graph's radius. thus vertices in the center (central points) minimize the maximal distance from other points in the graph.
------ Wikipedia
Now you are given a graph, tell me the vertices which are the graph center.

Input

There are multiple test cases.
The first line will contain in a positive integer T (T ≤ 300) meaning the number of test cases.
For each test case, the first line contains the number of vertices N (3≤n ≤ 100) and the number of edges M (N-1 ≤ N * (N-1) /2 ). each of the following N lines contains two vertices x (1 ≤ x ≤ N) and y (1 ≤ y ≤ N), meaning there is an edge between x and y.

Output

The first line show contain the number of vertices which are the graph center. Then the next line shocould list them by increasing order, and every two adjacent number shocould be separated by a single space.

Sample Input
24 31 31 22 45 51 41 32 42 34 5
Sample Output
21 231 2 4
HINT

 

Source
#include
 
   #include
  
    #include
   
     using namespace std;   const int MAXN = 105; const int MAXM = 100005; const int INF = 1<<30; struct EDG{     int to,next; }edg[MAXM]; int eid,head[MAXN];   void init(){     eid=0;     memset(head,-1,sizeof(head)); } void addEdg(int u,int v){     edg[eid].to=v; edg[eid].next=head[u]; head[u]=eid++;     edg[eid].to=u; edg[eid].next=head[v]; head[v]=eid++; } int spfa(int s,int n){     queue
    
     q;     bool inq[MAXN]={0};     int d[MAXN];     for(int i=1; i<=n; i++)         d[i]=INF;     d[s]=0;     q.push(s);     while(!q.empty()){         int u=q.front(); q.pop();         inq[s]=0;         for(int i=head[u]; i!=-1; i=edg[i].next){             int v=edg[i].to;             if(d[v]>d[u]+1){                 d[v]=d[u]+1;                 if(!inq[v])                  q.push(v),inq[v]=1;             }         }     }     int maxt=0;     for(int i=1; i<=n; i++)         if(maxt
     
    
   
  
 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.