比赛 20120418s 评测结果 AAAAAAATTT
题目名称 捉迷藏 最终得分 70
用户昵称 kaaala 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2012-04-18 08:51:19
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cmath>
#include<cstring>
#include<algorithm>
#include<queue>

using namespace std;

const int oo=~0u>>2;

struct edge
{
	int t,cost;
	edge *next;
	edge(int _t,int _cost,edge *_next):t(_t),cost(_cost),next(_next){}
}*Map[20010];

int N,M,ans=-oo,tot,id;

void addedge(int s,int t,int cost)
{
	Map[s]=new edge(t,cost,Map[s]);
	Map[t]=new edge(s,cost,Map[t]);
}

int djs(int T)
{
	bool vis[20010];
	memset(vis,0,sizeof(vis));
	int dist[20010];
	for(int i=1;i<=N;i++)
		dist[i]=oo;
	dist[1]=0;
	priority_queue<pair<int,int> >heap;
	heap.push(make_pair(0,1));
	while(!heap.empty())
	{
		int u=heap.top().second;
		heap.pop();
		if(!vis[u])
		{
			vis[u]=true;
			for(edge *p=Map[u];p;p=p->next)
			{
				int t=p->t,cost=p->cost;
				if(!vis[t]&&dist[t]>dist[u]+cost)
				{
					dist[t]=dist[u]+cost;
					heap.push(make_pair(-dist[t],t));
				}
			}
		}
	}
	return dist[T];
}

int main()
{
	freopen("hideseek.in","r",stdin);
	freopen("hideseek.out","w",stdout);
	scanf("%d%d",&N,&M);
	for(int i=1;i<=M;i++)
	{
		int a,b;
		scanf("%d%d",&a,&b);
		addedge(a,b,1);
	}
	for(int i=2;i<=N;i++)
	{
		int l=djs(i);
		if(l>ans)
		{
			ans=l;
			id=i;
			tot=1;
		}
		else if(l==ans)
			tot++;
	}
	printf("%d %d %d\n",id,ans,tot);
	return 0;
}