zoukankan      html  css  js  c++  java
  • (tarjan+SPFA求最长路) poj 3114

    Countries in War
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 2803   Accepted: 843

    Description

    In the year 2050, after different attempts of the UN to maintain peace in the world, the third world war broke out. The importance of industrial, commercial and military secrets obliges all the countries to use extremely sophisticated espionage services, so that each city in the world has at least one spy of each country. These spies need to communicate with other spies, informers as well as their headquarters during their actions. Unluckily there doesn’t exist a secure way for a spy to communicate during the war period, therefore the messages are always sent in code so that only the addressee is able to read the message and understand its meaning.

    The spies use the only service that functions during the war period, the post. Each city has a postal agency where the letters are sent. The letters can be sent directly to their destination or to other postal agencies, until the letter arrives at the postal agency of the destination city, if possible.

    The postal agency in city A can send a printed letter to the postal agency in city B if there is an agreement on sending letters, which determines the time, in hours, that a letter takes to reach city B from city A (and not necessarily the opposite). If there is no agreement between the agencies A and B, the agency A can try to send the letter to any agency so that the letter can reach its destination as early as possible

    Some agencies are connected with electronic communication media, such as satellites and optical fibers. Before the war, these connections could reach all the agencies, making that a letter could be sent instantly. But during the period of hostilities every country starts to control electronic communication and an agency can only send a letter to another agency by electronic media (or instantly) if they are in the same country. Two agencies, A and B, are in the same country if a printed letter sent from any one of the agencies can be delivered to the other one.

    The espionage service of your country has managed to obtain the content of all the agreements on sending messages existing in the world and desires to find out the minimum time to send a letter between different pairs of cities. Are you capable of helping them?

    Input

    The input contains several test cases. The first line of each test case contains two integer separated by a space, N (1 ≤ N ≤ 500) and E (0 ≤ E ≤ N2), indicating the numbers of cities (numbered from 1 to N) and of agreements on sending messages, respectively. Following them, then, E lines, each containing three integers separated by spaces, XY and H (1 ≤ XY ≤ N, 1 ≤ H ≤ 1000), indicating that there exist an agreement to send a printed letter from city X to city Y, and that such a letter will be delivered in H hours.

    After that, there will be a line with an integer K (0 ≤ K ≤ 100), the number of queries. Finally, there will be K lines, each representing a query and containing two integers separated by a space, O and D (1 ≤ O,D ≤ N). You must determine the minimum time to send a letter from city O to city D.

    The end of the input is indicated by N = 0.

    Output

    For each test case your program should produce K lines of output. The I-th line should contain an integer M, the minimum time, in hours, to send a letter in the I-th query. If there aren’t communication media between the cities of the query, you should print “Nao e possivel entregar a carta” (“It’s impossible to deliver the letter”).

    Print a blank line after each test case.

    Sample Input

    4 5
    1 2 5
    2 1 10
    3 4 8
    4 3 7
    2 3 6
    5
    1 2
    1 3
    1 4
    4 3
    4 1
    3 3
    1 2 10
    2 3 1
    3 2 1
    3
    1 3
    3 1
    3 2
    0 0

    Sample Output

    0
    6
    6
    0
    Nao e possivel entregar a carta
    
    10
    Nao e possivel entregar a carta
    0

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<string>
    #include<cmath>
    #include<algorithm>
    #include<cstdlib>
    #include<queue>
    #include<vector>
    #include<stack>
    #include<set>
    #include<map>
    #define INF 100000000
    using namespace std;
    vector<int> e1[510],w1[510],e2[510],w2[510];
    stack<int> s;
    int n,m;
    int Dfs[510],low[510],use[510],isstack[510],dist[510],vis[510];
    int top,newflag,qq;
    void init()
    {
        memset(Dfs,0,sizeof(Dfs));
        memset(low,0,sizeof(low));
        memset(use,0,sizeof(use));
        memset(isstack,0,sizeof(isstack));
        top=newflag=0;
        while(!s.empty())
            s.pop();
        for(int i=1;i<=n;i++)
            e1[i].clear(),w1[i].clear(),e2[i].clear(),w2[i].clear();
    }
    void tarjan(int u)
    {
        Dfs[u]=low[u]=++top;
        s.push(u);
        isstack[u]=1;
        for(int i=0;i<e1[u].size();i++)
        {
            int v=e1[u][i];
            if(!Dfs[v])
            {
                tarjan(v);
                low[u]=min(low[u],low[v]);
            }
            else if(isstack[v])
                low[u]=min(low[u],Dfs[v]);
        }
        if(Dfs[u]==low[u])
        {
            newflag++;
            int x;
            do
            {
                x=s.top();
                s.pop();
                isstack[x]=0;
                use[x]=newflag;
            }while(x!=u);
        }
    }
    int spfa(int s,int t)
    {
        queue<int> q;
        for(int i=1;i<=newflag;i++)
            dist[i]=INF;
        memset(vis,0,sizeof(vis));
        dist[s]=0;
        vis[s]=1;
        q.push(s);
        while(!q.empty())
        {
            int x=q.front();
            q.pop();
            vis[x]=0;
            for(int i=0;i<e2[x].size();i++)
            {
                int v=e2[x][i];
                int ww=w2[x][i];
                if(dist[v]>dist[x]+ww)
                {
                    dist[v]=dist[x]+ww;
                    if(!vis[v])
                    {
                        vis[v]=1;
                        q.push(v);
                    }
                }
            }
        }
        return dist[t];
    }
    int main()
    {
        while(scanf("%d%d",&n,&m)!=EOF)
        {
            if(n==0&&m==0)
                break;
            init();
            for(int i=1;i<=m;i++)
            {
                int x,y,z;
                scanf("%d%d%d",&x,&y,&z);
                e1[x].push_back(y);
                w1[x].push_back(z);
            }
            for(int i=1;i<=n;i++)
            {
                if(!Dfs[i])
                    tarjan(i);
            }
            for(int i=1;i<=n;i++)
            {
                for(int j=0;j<e1[i].size();j++)
                {
                    int u,v,ww;
                    u=use[i],v=use[e1[i][j]],ww=w1[i][j];
                    if(u!=v)
                    {
                        e2[u].push_back(v);
                        w2[u].push_back(ww);
                    }
                }
            }
            scanf("%d",&qq);
            while(qq--)
            {
                int x,y;
                scanf("%d%d",&x,&y);
                if(use[x]==use[y])
                {
                    printf("0
    ");
                    continue;
                }
                else
                {
                    int ans=spfa(use[x],use[y]);
                    if(ans>=INF)
                        printf("Nao e possivel entregar a carta
    ");
                    else
                        printf("%d
    ",ans);
                }
            }
            printf("
    ");
        }
        return 0;
    }
    

      

  • 相关阅读:
    以友盟+U-Push为例,深度解读消息推送的筛选架构解决方案应用与实践
    [Python图像处理] 三十三.图像各种特效处理及原理万字详解(毛玻璃、浮雕、素描、怀旧、流年、滤镜等)
    走进PEP8——代码规范
    2020全球C++及系统软件技术大会成功落下帷幕
    逆向工程,调试Hello World !程序(更新中)
    520了,用32做个简单的小程序
    细数那些年我用过的前端开发工具
    细数那些年我用过的前端开发工具
    前端几个常用简单的开发手册拿走不谢
    前端几个常用简单的开发手册拿走不谢
  • 原文地址:https://www.cnblogs.com/water-full/p/4527425.html
Copyright © 2011-2022 走看看