记录编号 |
286290 |
评测结果 |
AAAAAAAA |
题目名称 |
服务点设置 |
最终得分 |
100 |
用户昵称 |
AntiLeaf |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.016 s |
提交时间 |
2016-07-30 13:57:43 |
内存使用 |
2.01 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=110;
int n,m,dis[maxn][maxn],x,y,ans,mx,tmp;
int main(){
#define MINE
#ifdef MINE
freopen("djsa.in","r",stdin);
freopen("djsa.out","w",stdout);
#endif
scanf("%d%d",&n,&m);
memset(dis,63,sizeof(dis));
while(m--){
scanf("%d%d",&x,&y);
x++;y++;
scanf("%d",&dis[x][y]);
dis[y][x]=dis[x][y];
}
for(int k=1;k<=n;k++)for(int i=1;i<=n;i++)for(int j=1;j<=n;j++)//像这样偷懒是不好的
dis[i][j]=min(dis[i][j],dis[i][k]+dis[k][j]);
mx=0x7fffffff;
for(int i=1;i<=n;i++){
tmp=0;
for(int j=1;j<=n;j++)if(i!=j){
tmp=max(tmp,dis[i][j]);
}
if(tmp<mx){
mx=tmp;
ans=i;
}
}
printf("%d",ans-1);
return 0;
}