查看文章
 
floyd 算法的例题(usaco 2.4.3--Cow Tours牛的旅行)zz
2009-06-25 0:20

描述
农民John的农场里有很多牧区。有的路径连接一些特定的牧区。一片所有连通的牧区称为一个牧场。但是就目前而言,你能看到至少有两个牧区不连通。这样,农民John就有多个牧场了。
John想在农场里添加一条路径(注意,恰好一条)。对这条路径有以下限制:
一个牧场的直径就是牧场中最远的两个牧区的距离(本题中所提到的所有距离指的都是最短的距离)。考虑如下的有5个牧区的牧场,牧区用“*”表示,路径用直线表示。每一个牧区都有自己的坐标:

               15,15   20,15
                 D       E
                 *-------*
                 |     _/|
                 |   _/  |
                 | _/    |
                 |/      |
        *--------*-------*
        A        B       C
        10,10   15,10   20,10

这个牧场的直径大约是12.07106, 最远的两个牧区是A和E,它们之间的最短路径是A-B-E。

这里是另一个牧场:

                             *F 30,15
                        / 
                      _/  
                    _/    
                   /      
                  *------* 
                  G      H
                  25,10   30,10

这两个牧场都在John的农场上。John将会在两个牧场中各选一个牧区,然后用一条路径连起来,使得连通后这个新的更大的牧场有最小的直径。

注意,如果两条路径中途相交,我们不认为它们是连通的。只有两条路径在同一个牧区相交,我们才认为它们是连通的。

输入文件包括牧区、它们各自的坐标,还有一个如下的对称邻接矩阵:

  A  B  C  D  E  F  G  H 
A  0  1  0  0  0  0  0  0
B  1  0  1  1  1  0  0  0
C  0  1  0  0  1  0  0  0
D  0  1  0  0  1  0  0  0
E  0  1  1  1  0  0  0  0
F  0  0  0  0  0  0  1  0
G  0  0  0  0  0  1  0  1
H  0  0  0  0  0  0  1  0

输入文件至少包括两个不连通的牧区。

请编程找出一条连接两个不同牧场的路径,使得连上这条路径后,这个更大的新牧场有最小的直径。

格式

PROGRAM NAME: cowtour

INPUT FORMAT:

(file cowtour.in)

第1行: 一个整数N (1 <= N <= 150), 表示牧区数

第2到N+1行: 每行两个整数X,Y (0 <= X ,Y<= 100000), 表示N个牧区的坐标。注意每个 牧区的坐标都是不一样的。

第N+2行到第2*N+1行: 每行包括N个数字(0或1) 表示如上文描述的对称邻接矩阵。

OUTPUT FORMAT:

(file cowtour.out)

只有一行,包括一个实数,表示所求答案。数字保留六位小数。

SAMPLE INPUT

8
10 10
15 10
20 10
15 15
20 15
30 15
25 10
30 10
01000000
10111000
01001000
01001000
01110000
00000010
00000101
00000010

SAMPLE OUTPUT

22.071068
【参考程序】:
type edge=record
      x,y:double;
      end;
var i,j,n:longint;
    cost:array[1..200,1..200]of double;
    elist:array[1..200]of edge;
    ss,maxn:double;
    ch:char;
function jisuan(x1,y1,x2,y2:double):double;
begin
    jisuan:=sqrt(sqr(x1-x2)+sqr(y1-y2));
end;
procedure floyd;//floyd 算法计算出每一个点到它所连接的点的距离
var i,j,k:longint;
begin
    for k:=1 to n do
      for i:=1 to n do
       if k<>i then
         for j:=1 to n do
           if (i<>j)and(k<>j) then
            if cost[i,j]>cost[i,k]+cost[k,j] then
              cost[i,j]:=cost[i,k]+cost[k,j];
end;
procedure flish;
var i,j,k:longint;
    max1,max2,max,maxd,pp,kk:double;
begin
    maxd:=maxn;
    for i:=1 to n do
      for j:=1 to n do
        if i<>j then
          if cost[i,j]=maxn then
          begin//上式成立表示i--j这两点断开了那我们就


在i这边选一个离它最远的点
另一边从j这边选一个离它最远的点,两个点的距离加
上elist[i]到elist[j]这两点间的距离

              max1:=0.0;
              for k:=1 to n do
                if k<>i then//与i相连选一条最长
                  if cost[i,k]<>maxn then
                   if cost[i,k]>max1 then
                      max1:=cost[i,k];
              max2:=0.0;
              for k:=1 to n do
                if k<>j then//与j相连选一条最长
                  if cost[j,k]<>maxn then
                    if cost[j,k]>max2 then
                      max2:=cost[j,k];
              kk:=jisuan(elist[i].x,elist[i].y,elist[j].x,elist[j].y);
              if maxd>max1+max2+kk then
                maxd:=max1+max2+kk;//加在一起
          end;
    max:=0.0;//此处是防止原本的两个连通子图中其中一个比另一个的连进去后的直径还要大.

    for i:=1 to n do
     for j:=1 to n do
       if i<>j then
        if cost[i,j]<>maxn then
         if cost[i,j]>max then
           max:=cost[i,j];
    if max>maxd then pp:=max
    else pp:=maxd;
    writeln(pp:0:6);
end;
begin
    while not eof do
    begin
      readln(n);
      maxn:=5000000.88;
      for i:=1 to n do
      for j:=1 to n do
          if i=j then cost[i,j]:=0
          else cost[i,j]:=maxn;
      for i:=1 to n do
readln(elist[i].x,elist[i].y);
    for i:=1 to n do
      begin
         for j:=1 to n do
         begin
            read(ch);
            if ch='1' then
            begin
              ss:=jisuan(elist[i].x,elist[i].y,elist[j].x,elist[j].y);
              cost[i,j]:=ss;
              cost[j,i]:=ss;
            end;
         end;
         readln;
     end;
      floyd;
      flish;
   end;
end.
原文链接:http://hi.baidu.com/%CA%C0%BD%E7__%CE%D2%B5%C4/blog/item/2f889c8eb5d937fc513d92ac.html

类别:Algorithm Contest||添加到搜藏 |分享到i贴吧|浏览(406)|评论 (0)
 
最近读者:
 
网友评论:
发表评论:
姓 名:
网址或邮箱: (选填)
内 容:
     

   
帮助中心 | 空间客服 | 投诉中心 | 空间协议
©2012 Baidu