Description
Unfortunately for you, stockbrokers only trust information coming from their "Trusted sources" This means you have to take into account the structure of their contacts when starting a rumour. It takes a certain amount of time for a specific stockbroker to pass the rumour on to each of his colleagues. Your task will be to write a program that tells you which stockbroker to choose as your starting point for the rumour, as well as the time it will take for the rumour to spread throughout the stockbroker community. This duration is measured as the time needed for the last person to receive the information.
Input
Each person is numbered 1 through to the number of stockbrokers. The time taken to pass the message on will be between 1 and 10 minutes (inclusive), and the number of contacts will range between 0 and one less than the number of stockbrokers. The number of stockbrokers will range from 1 to 100. The input is terminated by a set of stockbrokers containing 0 (zero) people.
Output
It is possible that your program will receive a network of connections that excludes some persons, i.e. some people may be unreachable. If your program detects such a broken network, simply output the message "disjoint". Note that the time taken to pass the message from person A to person B is not necessarily the same as the time taken to pass it from B to A, if such transmission is possible at all.
Sample Input
3
2 2 4 3 5
2 1 2 3 6
2 1 2 2 2
5
3 4 4 2 8 5 3
1 5 8
4 1 6 4 10 2 7 5 2
0
2 2 5 1 5
0
Sample Output
3 2
3 10
Source
正解:floyd算法
解题报告:
实实在在的水题,给定一个有向图,求一个源点使得到所有点的距离的最大值最小。
数据范围小,直接跑floyd,水过。
#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstdlib>
#include<cstring>
#include<algorithm>
using namespace std;
const int MAXN = ;
const int inf = ;
int a[MAXN][MAXN];
int n; int main()
{
while() {
scanf("%d",&n);
if(n==) break;
int x,y,z; for(int i=;i<=n;i++)
for(int j=;j<=n;j++)
a[i][j]=inf; for(int i=;i<=n;i++) {
scanf("%d",&x);
if(!x) continue;
for(int j=;j<=x;j++) scanf("%d%d",&y,&z),a[i][y]=z;
} for(int k=;k<=n;k++)
for(int i=;i<=n;i++)
for(int j=;j<=n;j++)
if(i!=j && j!=k)
a[i][j]=min(a[i][j],a[i][k]+a[k][j]); int ans=inf,jilu=-; bool flag=false;
for(int i=;i<=n;i++)
{
int now=;
for(int j=;j<=n;j++)
if(i==j) continue;
//else if(a[i][j]>=inf) { printf("disjoint\n"); flag=true; break; }
else now=max(now,a[i][j]); if(now<ans) { ans=now; jilu=i; }
} for(int i=;i<=n && !flag;i++) {
int total=;
for(int j=;j<=n;j++) {
if(i!=j && a[j][i]>=inf && i!=jilu) total++;
}
if(total==n-) flag=true;
} if(!flag) printf("%d %d\n",jilu,ans);
else { printf("disjoint\n"); }
}
return ;
}