poj 3114 Countries in War(强连通分支缩点+最短路)

题目链接:http://poj.org/problem?id=3114

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 ≤ OD ≤ 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

做poj以来第一次在不借助任何资源且在不到一个小时的时间内一发ac的图论算法题,唉,只能说明这是个水题了


题目大意:n个城市之间通信,有M条边(有向的),每个边上有权值,而且有如果从城市a能到城市b且b也能到a 则定义为这两个城市间的通信费用==0;

ps:建图(有向图),因为题目中说到通信费用==0的情况,可以联想到双联通问题,任意双联通图都符合那种情况,所以就是找强连通分支然后缩点在建图求两点之间的最短路问题,注意在一个缩点的费用为0;

还应该只有,在重新建图时的权值,因为求最短路,所以只要两个缩点间可以建图,就加上一条边就可以了,不用担心那条最短,反正最后求最短路


#include <iostream>
#include<cstring>
#include<cstdio>
#include<cmath>
#include<queue>
#include<stack>
#include<vector>
#define INF 0x3f3f3f3f

using namespace std;

struct node
{
    int v;
    int w;
    int next;
} eage[500000],neweage[500000];

int head[1000];
int newhead[1000];

int vis[1000];

int n,m;
int low[1000],dfn[1000];

int bcc[1000];

int ant;
int cnt;
stack<int >s;

void tarjan(int u)
{
    low[u]=dfn[u]=ant++;
    s.push(u);
    vis[u]=1;
    for(int i=head[u];i!=-1;i=eage[i].next)
    {
        int v=eage[i].v;
        if(vis[v]==0)
        {
            tarjan(v);
            low[u]=min(low[u],low[v]);
        }
        else if(vis[v]==1)
        {
            low[u]=min(low[u],dfn[v]);
        }
    }
    if(low[u]==dfn[u])
    {
        while(!s.empty())
        {
            int x=s.top();
            vis[x]=2;
            s.pop();
            bcc[x]=cnt;
            if(x==u)break;
        }
        cnt++;
    }
}

int dist[1000];
int spfa(int s,int t)
{
    //cout<<s<<" "<<t<<endl;
    int countnum[1000];

    queue<int >q;
    while(!q.empty())q.pop();
    for(int i=0;i<=cnt;i++)
    {
        dist[i]=INF;
        vis[i]=0;

        countnum[i]=0;
    }
    dist[s]=0;
    vis[s]=1;
    q.push(s);
    countnum[s]++;
    while(!q.empty())
    {
        int u=q.front();
        q.pop();

        vis[u]=0;

        for(int i=newhead[u];i!=-1;i=neweage[i].next)
        {
            int v=neweage[i].v;
            int w=neweage[i].w;
            if(dist[v]>dist[u]+w)
            {
                dist[v]=dist[u]+w;
                if(!vis[v])
                {
                    vis[v]=1;
                    q.push(v);
                    countnum[v]++;
                    if(countnum[v]>n)return 0;
                }
            }
        }
    }
    //for(int i=0;i<=cnt;i++)cout<<" "<<dist[i];
    //cout<<endl;
    if(dist[t]<INF)return dist[t];
    return 0;
}
int main()
{
    int x,y,h;
    int k;
    while(scanf("%d%d",&n,&m))
    {
        if(n==0&&m==0)break;
        memset(head,-1,sizeof(head));

        for(int j=0,i=0;i<m;i++)
        {
            scanf("%d%d%d",&x,&y,&h);
            eage[j].v=y;
            eage[j].w=h;
            eage[j].next=head[x];
            head[x]=j++;
        }
        memset(vis,0,sizeof(vis));
        memset(dfn,0,sizeof(dfn));
        memset(low,0,sizeof(dfn));

        memset(bcc,-1,sizeof(bcc));

        memset(newhead,-1,sizeof(newhead));

        cnt=0;
        ant=1;
        while(!s.empty())s.pop();

        for(int i=1;i<=n;i++)
        {
            if(!vis[i])tarjan(i);
        }

        //cout<<"cnt "<<cnt<<endl;
        //cout<<"ant "<<ant<<endl;

//        for(int i=1;i<=n;i++)
//        {
//            if(bcc[i]==0)cout<<i<<" ";
//        }
       // cout<<endl;
//        for(int i=1;i<=n;i++)
//        {
//            if(bcc[i]==1)cout<<i<<" ";
//        }
       // cout<<endl;
        for(int a=0,i=1;i<=n;i++)
        {
            for(int j=head[i];j!=-1;j=eage[j].next)
            {
                int v=eage[j].v;
                int w=eage[j].w;
                if(bcc[i]!=bcc[v]&&bcc[i]!=-1&&bcc[v]!=-1)
                {
                    int ss=bcc[i];
                    int tt=bcc[v];
                    //cout<<"u "<<ss<<" v "<<v<<endl;
                    //cout<<ss<<" "<<tt<<" "<<w;
                    neweage[a].v=tt;
                    neweage[a].w=w;
                    neweage[a].next=newhead[ss];
                    newhead[ss]=a++;
                }
            }
        }
        scanf("%d",&k);
        for(int i=0;i<k;i++)
        {
            scanf("%d%d",&x,&y);
            if(bcc[x]==bcc[y]&&bcc[x]!=-1&&bcc[y]!=-1)printf("0\n");
            else
            {
                int  b=spfa(bcc[x],bcc[y]);
                if(b==0)printf("Nao e possivel entregar a carta\n");
                else printf("%d\n",b);
            }
        }
        cout<<endl;
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值