永发信息网

求高手检查错误,C++语言,ACM资深菜鸟,ZOJ 1891/POJ 2502 Floyd算法。。。。

答案:1  悬赏:30  手机版
解决时间 2021-08-14 15:13
  • 提问者网友:骑士
  • 2021-08-13 16:28

Subway

Time Limit:5 Seconds      Memory Limit:32768 KB

You have just moved from a quiet Waterloo neighbourhood to a big, noisy city. Instead of getting to ride your bike to school every day, you now get to walk and take the subway. Because you don't want to be late for class, you want to know how long it will take you to get to school.

You walk at a speed of 10 km/h. The subway travels at 40 km/h. Assume that you are lucky, and whenever you arrive at a subway station, a train is there that you can board immediately. You may get on and off the subway any number of times, and you may switch between different subway lines if you wish. All subway lines go in both directions. 


Input

Input consists of the x,y coordinates of your home and your school, followed by specifications of several subway lines. Each subway line consists of the non-negative integer x,y coordinates of each stop on the line, in order. You may assume the subway runs in a straight line between adjacent stops, and the coordinates represent an integral number of metres. Each line has at least two stops. The end of each subway line is followed by the dummy coordinate pair -1,-1. In total there are at most 200 subway stops in the city. A pair of -1 indicates the end of the subway list.

Input contains multiple test cases. Process to the end of file.


Output

Output for each test case is the number of minutes it will take you to get to school, rounded to the nearest minute, taking the fastest route.


Sample Input

0 0 10000 1000
0 200 5000 200 7000 200 -1 -1
2000 600 5000 600 10000 600 -1 -1
-1 -1


Sample Output

21

哥的代码:

#include<stdio.h>
#include<algorithm>
#include<math.h>
#include<string.h>

using namespace std;

struct point
{
 double x;
 double y;
 int index;
};
point p[205];
int n;
double dis[205][205];

void init()
{
 int i,j;
 for(i=0;i<205;i++)
  for(j=0;j<205;j++)
   dis[i][j]=0.0;
}

void floyd()
{
 int i,j,k;
 for(k=0;k<n;k++)
  for(i=0;i<n;i++)
   for(j=0;j<n;j++)
    if(dis[i][j]>dis[i][k]+dis[k][j])
     dis[i][j]=dis[i][k]+dis[k][j];
}

int main()
{
 int i,j,temp=1;
 int co;
 while(scanf("%lf%lf%lf%lf",&p[0].x,&p[0].y,&p[1].x,&p[1].y)!=EOF)
 {
  init();
  p[0].index=-1;
  p[1].index=0;
  n=2;
  while(scanf("%lf%lf",&p[n].x,&p[n].y)!=EOF)
  {
   if(p[n].x==-1&&p[n].y==-1)
   {
    temp++;
    if(co==0)
     break;
    co=0;
    continue;
   }
   p[n].index=temp;
   n++;
   co++;
  }
 // for(i=0;i<n;i++)
 //  printf("%lf %lf %d\n",p[i].x,p[i].y,p[i].index);
  for(i=0;i<n;i++)
   for(j=0;j<n;j++)
   {
    if(p[i].index!=p[j].index)
     dis[i][j]=60.0*sqrt((p[i].x-p[j].x)*(p[i].x-p[j].x)+(p[i].y-p[j].y)*(p[i].y-p[j].y))/10000.0;
    else
     dis[i][j]=60.0*sqrt((p[i].x-p[j].x)*(p[i].x-p[j].x)+(p[i].y-p[j].y)*(p[i].y-p[j].y))/40000.0;
   }
 // for(i=0;i<n;i++)
 // {
 //  for(j=0;j<n;j++)
 //   printf("%lf ",dis[i][j]);
 //  printf("\n");
 // }
  floyd();
  printf("%0.0lf\n",dis[0][1]);
 }
 return 0;
}

错误的原因最好写清楚点。。。拜托了,另外,网上的解题报告我都是看过的,所以请不要复制。。谢谢

最佳答案
  • 五星知识达人网友:妄饮晩冬酒
  • 2021-08-13 17:44
用中文描述你的问题,好吗?我是菜鸟,但是我还是可以看看的!!
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯