C/C++知识点之1003 Emergency(25 分)C语言版本(提问求解答)
小标 2018-11-01 来源 : 阅读 1720 评论 1

摘要:本文主要向大家介绍了C/C++知识点之1003 Emergency(25 分)C语言版本(提问求解答),通过具体的内容向大家展示,希望对大家学习C/C++知识点有所帮助。

本文主要向大家介绍了C/C++知识点之1003 Emergency(25 分)C语言版本(提问求解答),通过具体的内容向大家展示,希望对大家学习C/C++知识点有所帮助。

1003 Emergency(25 分)

As an emergency rescue team leader of a city, you are given a special map of your country. The map shows several scattered cities connected by some roads. Amount of rescue teams in each city and the length of each road between any pair of cities are marked on the map. When there is an emergency call to you from some other city, your job is to lead your men to the place as quickly as possible, and at the mean time, call up as many hands on the way as possible.
Input Specification:
Each input file contains one test case. For each test case, the first line contains 4 positive integers: N (≤500) - the number of cities (and the cities are numbered from 0 to N?1), M - the number of roads, C?1?? and C?2?? - the cities that you are currently in and that you must save, respectively. The next line contains N integers, where the i-th integer is the number of rescue teams in the i-th city. Then M lines follow, each describes a road with three integers c?1??, c?2?? and L, which are the pair of cities connected by a road and the length of that road, respectively. It is guaranteed that there exists at least one path from C?1?? to C?2??.
Output Specification:
For each test case, print in one line two numbers: the number of different shortest paths between C?1?? and C?2??, and the maximum amount of rescue teams you can possibly gather. All the numbers in a line must be separated by exactly one space, and there is no extra space allowed at the end of a line.
Sample Input:
5 6 0 21 2 1 5 30 1 10 2 20 3 11 2 12 4 1 3 4 1 
Sample Output:
2 4 这篇我是根据其他前辈写的自己编写的,提交的时候现实只有一个正确,其余错误,希望大家帮我找一下我的错误。感谢感谢??

#include<stdio.h>
#include<math.h> 
#include <stdbool.h>
#define inf 9999999
int main(){
  int n,m,c1,c2,i,j;
  int num[510],weight[510],dis[510],w[510];//num路径条数 dis最短路径长 w最终队伍数目总和
  int e[510][510];
  bool visit[510];            //标记访问
  scanf("%d%d%d%d",&n,&m,&c1,&c2);
  for(i=0;i<n;i++)
    scanf("%d",&weight[i]);   //每个顶点的数量
  for(i=0;i<n;i++){
    for(j=0;j<n;j++){
      e[i][j]=inf;            //重置矩阵e顶点
    }
    dis[i]=inf;               //重置边
  }
  int a,b,c;
  for(i=0;i<m;i++){
    scanf("%d%d%d",&a,&b,&c);
    e[a][b]=e[b][a]=c;        //输入边
  }
  dis[c1]=0;
  w[c1]=weight[c1];
  num[c1]=1;
  for(i=0;i<n;i++){
    int u=-1,minn=inf;
    for(j=0;j<n;j++){
      if(visit[j]==false&&dis[j]<minn){
        u=j;minn=dis[j];
      }
    }
    if(u==-1) break;
    visit[u]=true;
    for(int v=0;v<n;v++){
      if(visit[v]==false&&e[u][v]!=inf){
        if(dis[v]+e[u][v]<dis[v]){
          dis[v]=e[u][v]+dis[v];
          num[v]=num[u];
          w[v]=w[u]+weight[v];
        }
        else if(dis[v]+e[u][v]==dis[v]){
          num[v]=num[u]+num[v];
          if(w[u]+weight[v]>w[v]){
            w[v]=w[u]+weight[v];
          }
        }
      }
    }
  }
  printf("%d %d",num[c2],w[c2]);
  return 0;
}

本文由职坐标整理并发布,希望对同学们有所帮助。了解更多详情请关注职坐标编程语言C/C+频道!

本文由 @小标 发布于职坐标。未经许可,禁止转载。
喜欢 | 3 不喜欢 | 2
看完这篇文章有何感觉?已经有5人表态,60%的人喜欢 快给朋友分享吧~
评论(1)
后参与评论
12342
松弛里面算式错了,应该是:dis[u]+e[u][v] 2021/05/11 22:20:36

您输入的评论内容中包含违禁敏感词

我知道了

助您圆梦职场 匹配合适岗位
验证码手机号,获得海同独家IT培训资料
选择就业方向:
人工智能物联网
大数据开发/分析
人工智能Python
Java全栈开发
WEB前端+H5

请输入正确的手机号码

请输入正确的验证码

获取验证码

您今天的短信下发次数太多了,明天再试试吧!

提交

我们会在第一时间安排职业规划师联系您!

您也可以联系我们的职业规划师咨询:

小职老师的微信号:z_zhizuobiao
小职老师的微信号:z_zhizuobiao

版权所有 职坐标-一站式IT培训就业服务领导者 沪ICP备13042190号-4
上海海同信息科技有限公司 Copyright ©2015 www.zhizuobiao.com,All Rights Reserved.
 沪公网安备 31011502005948号    

©2015 www.zhizuobiao.com All Rights Reserved

208小时内训课程