zoukankan      html  css  js  c++  java
  • 1003 Emergency (Dijkstra)

    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 (≤) - the number of cities (and the cities are numbered from 0 to N1), M - the number of roads, C1​​ and C2​​ - 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 c1​​, c2​​ 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 C1​​ to C2​​.

    Output Specification:

    For each test case, print in one line two numbers: the number of different shortest paths between C1​​ and C2​​, 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 2
    1 2 1 5 3
    0 1 1
    0 2 2
    0 3 1
    1 2 1
    2 4 1
    3 4 1

    Sample Output:

    2 4
    

      

    此道题需要输出最短距离条数,最短路径中的最大点权,需添加这两个数组,并在更新d[v]的同时更新

    #include<cstdio>
    #include<algorithm>
    using namespace std;
    const int maxn=550;
    const int INF=0x3fffffff;
    int teams[maxn],G[maxn][maxn],vis[maxn]={0},d[maxn];
    int w[maxn]={0},num[maxn]={0};//最大点权,最短路径条数 
    int n,m,in,out;
    
    void dijkstra(int x){
        d[x]=0;
        vis[x]=1;
        num[x]=1;
        w[x]=teams[x];
        int newp=x;
        for(int i=0;i<n-1;i++){
            int zuijin=INF,index=-1;
            for(int j=0;j<n;j++){
                if(G[newp][j]+d[newp]==d[j]){
                    num[j]+=num[newp];
                    if(w[j]<w[newp]+teams[j])
                        w[j]=w[newp]+teams[j];
                }else if(G[newp][j]+d[newp]<d[j]){
                    d[j]=G[newp][j]+d[newp];
                    num[j]=num[newp];
                    w[j]=w[newp]+teams[j];
                }    
            }
            for(int j=0;j<n;j++){
                if(vis[j]==false&&d[j]<=zuijin){
                    zuijin=d[j];
                    index=j;
                }
            }
            vis[index]=1;
            newp=index;
        }
    }
    
    int main(){
        fill(G[0],G[0]+maxn*maxn,INF);
        fill(d,d+maxn,INF);
        scanf("%d %d %d %d",&n,&m,&in,&out);
        for(int i=0;i<n;i++)
            scanf("%d",&teams[i]);
        int t1,t2,ww;
        for(int i=0;i<m;i++){
            scanf("%d %d %d",&t1,&t2,&ww);
            G[t1][t2]=G[t2][t1]=ww;
        }
        dijkstra(in);
        printf("%d ",num[out]);
        printf("%d",w[out]);
        return 0;
    }
  • 相关阅读:
    Java中时间方法大全(持续更新)
    Set集合转换为List集合
    Maven配置【详细】
    maven配置环境变量
    idea中创建Java类时,自动在文件头中添加作者和创建时间
    linux下怎样在某个文件里面查找一个字符串?
    执行docker一系列命令失败
    如何在服务器上搭建SVN
    本地拉取服务器上的项目,SVN 由于目标计算机积极拒绝 无法连接失败
    [节选] web项目中使用freemarker [Translated By Nan Lei]
  • 原文地址:https://www.cnblogs.com/exciting/p/10457947.html
Copyright © 2011-2022 走看看