zoukankan      html  css  js  c++  java
  • 1003 Emergency

    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

    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, 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

    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
    


    我觉得我好笨,这个题目我本来以为很简单的结果写的时候才发现我这个渣渣;
    我连for都写错了 天哪 调试半天才发现 太久没写代码了
    然后我起初用的是队列 因为我大概在脑子里过了一遍就是取出从前到后不会对新值有影响,以为不会出现在后面更新了最短路条数更新的情况
    我错了 我想成bfs了 这里还要加一个dis 做成优先队列 叹气
    #include<cstdio>
    #include<algorithm>
    #include<cstring>
    #include<functional>
    #include<queue>
    using namespace std;
    int Len,head[505],vis[505],dis[505],dp[505],sum[505],num[505],a[505];
    int N,M,C1,C2;
    struct Data{
    int next,to,w;
    }data[12505];
    const int MAX=0xffffff;
    struct number1{  
        int x,y;  
        bool operator < (const number1 &a) const {  
            return x>a.x;//最小值优先  
        }  
    };  
    void add_Edge(int a,int b,int c)
    {
        data[Len].to=b;
        data[Len].w=c;
        data[Len].next=head[a];
        head[a]=Len;
        Len++;
    }
    void Read()
    {
        for(int i=0;i<N;i++)scanf("%d",&num[i]);
            int a,b,c;
            for(int i=0;i<N;i++)
                dis[i]=MAX;
            for(int i=0;i<M;i++){
            scanf("%d%d%d",&a,&b,&c);
               add_Edge(a,b,c);
               add_Edge(b,a,c);
            }
    }
    void init()
    {
        Len=0;
        memset(vis,0,sizeof vis);
        memset(head,-1,sizeof head);
        memset(sum,0,sizeof sum);
        memset(dp,0,sizeof dp);
        
        
    }
    void Solve()
    {
        dis[C1]=0;
        sum[C1]=num[C1];
        dp[C1]=1;
        priority_queue<number1>q; 
        //queue<int> q;
        number1 k;
        k.x=dis[C1];
        k.y=C1;
        q.push(k);
        while(!q.empty())
        {
            k=q.top();
            q.pop();
            int u=k.y;
            if(vis[u])continue;
            vis[u]=1;
            for(int i=head[u];i!=-1;i=data[i].next)
            {
                int v=data[i].to;
                if(dis[v]>dis[u]+data[i].w)
                {
                    dp[v]=dp[u];
                    dis[v]=dis[u]+data[i].w;
                    sum[v]=sum[u]+num[v];
                    k.x=dis[v];
                    k.y=v;
                    q.push(k);
                }
                else if(dis[v]==dis[u]+data[i].w)
                {
                dp[v]+=dp[u];
                sum[v]=max(sum[v],sum[u]+num[v]);
                }
            }
        }
        printf("%d %d
    ",dp[C2],sum[C2]);
    }
    int main()
    {
    
        while(~scanf("%d%d%d%d",&N,&M,&C1,&C2))
        {
            init();
            Read();
            Solve();
        }
    
    }
    

      

  • 相关阅读:
    深刻理解ajax的success和error的实质和执行过程
    再次遇到 js报错: expected expression, get ')' 或 get ';', '<'等错误?
    怎样让一行中的 文字 input输入框 按钮button它们在同一个高度上? 它们中的文字 是 垂直居中对齐
    怎样阻止input file文件域的change/onchange事件多次重复执行?
    如何在 messager/alert/confirm等消息提示框中 获取 / 设置 嵌入 html内容中的 input[type=checkbox]等的选中状态?
    异步函数造成的问题: 怎样确保异步执行的FileReader onload成功后才执行后面的语句?
    如何退出vim的宏记录模式
    bs模态框中的form获取或设置表单及其中元素用nam不能用id?
    关于git 的理解3
    关于git的理解2
  • 原文地址:https://www.cnblogs.com/newadi/p/5095351.html
Copyright © 2011-2022 走看看