poj3114 Countries in War(强连通分量+最短路)

来源:互联网 发布:插屏广告过滤软件 编辑:程序博客网 时间:2024/05/18 22:55
Countries in War
Time Limit: 1000MS Memory Limit: 65536KTotal Submissions: 1757 Accepted: 553

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 ≤ EN2), indicating the numbers of cities (numbered from 1 toN) and of agreements on sending messages, respectively. Following them, then,E lines, each containing three integers separated by spaces, X,Y and H (1 ≤ X, YN, 1 ≤ H ≤ 1000), indicating that there exist an agreement to send a printed letter from cityX 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 beK lines, each representing a query and containing two integers separated by a space,O and D (1 ≤ O, DN). You must determine the minimum time to send a letter from cityO 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. TheI-th line should contain an integer M, the minimum time, in hours, to send a letter in theI-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 51 2 52 1 103 4 84 3 72 3 651 21 31 44 34 13 31 2 102 3 13 2 131 33 13 20 0

Sample Output

0660Nao e possivel entregar a carta10Nao e possivel entregar a carta0在一个强连通分量里的点之间距离为0,求给出的点之间的最短距离。结束标志是n=0,脑残的判断成了n=0&&m=0,错了一天。
#include<stdio.h>#include<string.h>#include<stack>#include<vector>#define inf 99999999using namespace std;vector<int> vec[505];stack<int> sta;int dfn[505],low[505];int vis[505];int gro_id[505],gro[505];int map[505][505],map1[505][505];int d[505],v[505];int now,id;int n,m;void tarjan(int s){    vis[s]=2;    now++;    low[s]=dfn[s]=now;    sta.push(s);    for(int i=0; i<vec[s].size(); i++)    {        if(vis[vec[s][i]]==0)        {            tarjan(vec[s][i]);            low[s]=low[s]<low[vec[s][i]]?low[s]:low[vec[s][i]];        }        else if(vis[vec[s][i]]==2)            low[s]=low[s]<dfn[vec[s][i]]?low[s]:dfn[vec[s][i]];    }    if(low[s]==dfn[s])    {        id++;        while(1)        {            int t=sta.top();            gro_id[t]=id;            vis[t]=1;            sta.pop();            gro[id]++;            if(s==t)                break;        }    }}void dij(int start,int end){    int min,min_f;    for(int i=1; i<=id; i++)    {        d[i]=map1[start][i];        v[i]=0;    }    v[start]=1;    for(int i=1; i<id; i++)    {        min=inf;        min_f=1;        for(int j=1; j<=id; j++)        {            if(!v[j]&&min>d[j])            {                min=d[j];                min_f=j;            }        }        v[min_f]=1;        for(int j=1; j<=id; j++)        {            if(!v[j]&&d[j]>d[min_f]+map1[min_f][j])                d[j]=d[min_f]+map1[min_f][j];        }    }    if(d[end]==inf)        printf("Nao e possivel entregar a carta\n");    else        printf("%d\n",d[end]);}int main(){    while(scanf("%d%d",&n,&m)&&n!=0)    {        now=id=0;        memset(dfn,0,sizeof(dfn));        memset(low,0,sizeof(low));        memset(vis,0,sizeof(vis));        memset(gro_id,0,sizeof(gro_id));        memset(gro,0,sizeof(gro));        for(int i=1; i<=n; i++)        {            vec[i].clear();            map[i][i]=map1[i][i]=0;            for(int j=1; j<=n; j++)                map[i][j]=map[j][i]=map1[i][j]=map1[j][i]=inf;        }        for(int i=0; i<m; i++)        {            int a,b,c;            scanf("%d%d%d",&a,&b,&c);            vec[a].push_back(b);            if(map[a][b]>c)                map[a][b]=c;        }        for(int i=1; i<=n; i++)            if(!vis[i])                tarjan(i);        for(int i=1; i<=n; i++)            for(int j=1; j<=n; j++)                if(i!=j&&gro_id[i]!=gro_id[j]&&map[i][j]!=inf)                    map1[gro_id[i]][gro_id[j]]=map[i][j]<map1[gro_id[i]][gro_id[j]]?map[i][j]:map1[gro_id[i]][gro_id[j]];        scanf("%d",&m);        while(m--)        {            //printf("while %d\n",m);            int a,b;            scanf("%d%d",&a,&b);            if(gro_id[a]==gro_id[b])                printf("0\n");            else                dij(gro_id[a],gro_id[b]);        }        printf("\n");    }    return 0;}

原创粉丝点击