程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> POJ 3114 Countries in War

POJ 3114 Countries in War

編輯:C++入門知識

Countries in War
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 1857   Accepted: 582

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, X, Y and H (1 ≤ X, Y ≤ 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 0Sample Output

0
6
6
0
Nao e possivel entregar a carta

10
Nao e possivel entregar a carta
0
Source

South America 2006, Brazil Subregion
  縮點 最短路。
[cpp]
  /***************************************************************
    > File Name:    countries.cpp
    > Author:       SDUT_GYX
    > Mail:         [email protected]
    > Created Time: 2013/5/29 0:16:51
 **************************************************************/ 
 
#include <iostream>  
#include <cstring>  
#include <algorithm>  
#include <cstdio>  
#include <queue>  
#include <cstdlib>  
#include <iomanip>  
#include <string>  
#include <vector>  
#include <map>  
#include <cmath>  
#include <stack>  
#define LL long long  
#define N 260000  
#define inf 0x7fffffff  
using namespace std; 
struct num 

    int sta,end,val,next; 
}infor[N],a[N*10]; 
int pt[N],low[N],dfn[N],dis[N],num[N],Top,cou,id,n,m; 
stack<int> st; 
bool instack[N]; 
int main() 

    //freopen("data1.in","r",stdin);  
    void Tarjan(int u); 
    void rebuild(); 
    void addeage(int x,int y,int val=0); 
    int spfa(int sta,int end); 
    while(scanf("%d",&n)!=EOF) 
    { 
        if(n==0) 
        { 
            break; 
        } 
        scanf("%d",&m); 
        Top = 0; 
        memset(pt,-1,sizeof(pt)); 
        for(int i=0;i<=m-1;i++) 
        { 
            scanf("%d %d %d",&infor[i].sta,&infor[i].end,&infor[i].val); 
            addeage(infor[i].sta,infor[i].end); 
        } 
        cou=id=0; 
        memset(instack,false,sizeof(instack)); 
        memset(dfn,0,sizeof(dfn)); 
        memset(low,0,sizeof(low)); 
        for(int i=1;i<=n; i++) 
        { 
            if(!dfn[i]) 
            { 
                while(!st.empty()) 
                { 
                    st.pop(); 
                } 
                Tarjan(i); 
            } 
        } 
        rebuild(); 
        scanf("%d",&m); 
        while(m--) 
        { 
            int x,y; 
            scanf("%d %d",&x,&y); 
            int res=spfa(num[x],num[y]); 
            if(res==inf) 
            { 
                printf("Nao e possivel entregar a carta\n"); 
            }else  
            { 
                printf("%d\n",res); 
            } 
        } 
        printf("\n"); 
    } 

void addeage(int x,int y,int val=0) 

    a[Top].end=y; a[Top].val =val; 
    a[Top].next=pt[x]; pt[x]=Top; 
    Top++; 

void Tarjan(int u) 

    low[u] = dfn[u] = ++cou; 
    st.push(u); 
    instack[u] = true; 
    for(int i=pt[u];i!=-1; i=a[i].next) 
    { 
        int v = a[i].end; 
        if(!dfn[v]) 
        { 
            Tarjan(v); 
            low[u] = min(low[u],low[v]); 
        }else if(instack[v]) 
        { 
            low[u] = min(low[u],dfn[v]); 
        } 
    } 
    if(low[u]==dfn[u]) 
    { 
        int x;       
        id++; 
        do 
        { 
            x = st.top(); 
            st.pop(); 
            instack[x] = false; 
            num[x] = id; 
        }while(x!=u); 
    } 

void rebuild() 

    memset(pt,-1,sizeof(pt)); 
    Top = 0; 
    for(int i=0;i<=m-1; i++) 
    { 
        int x = infor[i].sta; 
        int y = infor[i].end; 
        int val = infor[i].val; 
        if(num[x]!=num[y]) 
        { 
            addeage(num[x],num[y],val); 
        } 
    } 

int spfa(int sta,int end) 

    queue<int>que; 
    memset(instack,false,sizeof(instack)); 
    for(int i=1;i<=id;i++) 
    { 
        dis[i] = inf; 
    } 
    que.push(sta); 
    instack[sta] = true; 
    dis[sta] = 0; 
    while(!que.empty()) 
    { 
        int x = que.front(); 
        que.pop(); 
        instack[x] = false; 
        for(int i=pt[x]; i!=-1; i=a[i].next) 
        { 
            int v = a[i].end; 
            int val = a[i].val; 
            if(dis[v] > dis[x] + val) 
            { 
                dis[v] = dis[x] + val; 
                if(!instack[v]) 
                { 
                    que.push(v); 
                    instack[v] = true; 
                } 
            } 
        } 
    } 
    return dis[end]; 

/***************************************************************
 > File Name:    countries.cpp
 > Author:       SDUT_GYX
 > Mail:         [email protected]
 > Created Time: 2013/5/29 0:16:51
 **************************************************************/

#include <iostream>
#include <cstring>
#include <algorithm>
#include <cstdio>
#include <queue>
#include <cstdlib>
#include <iomanip>
#include <string>
#include <vector>
#include <map>
#include <cmath>
#include <stack>
#define LL long long
#define N 260000
#define inf 0x7fffffff
using namespace std;
struct num
{
 int sta,end,val,next;
}infor[N],a[N*10];
int pt[N],low[N],dfn[N],dis[N],num[N],Top,cou,id,n,m;
stack<int> st;
bool instack[N];
int main()
{
 //freopen("data1.in","r",stdin);
 void Tarjan(int u);
 void rebuild();
 void addeage(int x,int y,int val=0);
 int spfa(int sta,int end);
 while(scanf("%d",&n)!=EOF)
 {
  if(n==0)
  {
   break;
  }
  scanf("%d",&m);
  Top = 0;
  memset(pt,-1,sizeof(pt));
  for(int i=0;i<=m-1;i++)
  {
   scanf("%d %d %d",&infor[i].sta,&infor[i].end,&infor[i].val);
   addeage(infor[i].sta,infor[i].end);
  }
  cou=id=0;
  memset(instack,false,sizeof(instack));
  memset(dfn,0,sizeof(dfn));
  memset(low,0,sizeof(low));
  for(int i=1;i<=n; i++)
  {
   if(!dfn[i])
   {
    while(!st.empty())
    {
     st.pop();
    }
    Tarjan(i);
   }
  }
  rebuild();
  scanf("%d",&m);
  while(m--)
  {
   int x,y;
   scanf("%d %d",&x,&y);
   int res=spfa(num[x],num[y]);
      if(res==inf)
      {
       printf("Nao e possivel entregar a carta\n");
      }else
   {
    printf("%d\n",res);
   }
  }
  printf("\n");
 }
}
void addeage(int x,int y,int val=0)
{
 a[Top].end=y; a[Top].val =val;
 a[Top].next=pt[x]; pt[x]=Top;
 Top++;
}
void Tarjan(int u)
{
 low[u] = dfn[u] = ++cou;
 st.push(u);
 instack[u] = true;
 for(int i=pt[u];i!=-1; i=a[i].next)
 {
  int v = a[i].end;
  if(!dfn[v])
  {
   Tarjan(v);
   low[u] = min(low[u],low[v]);
  }else if(instack[v])
  {
   low[u] = min(low[u],dfn[v]);
  }
 }
 if(low[u]==dfn[u])
 {
  int x;  
  id++;
  do
  {
   x = st.top();
   st.pop();
   instack[x] = false;
   num[x] = id;
  }while(x!=u);
 }
}
void rebuild()
{
 memset(pt,-1,sizeof(pt));
 Top = 0;
 for(int i=0;i<=m-1; i++)
 {
  int x = infor[i].sta;
  int y = infor[i].end;
  int val = infor[i].val;
  if(num[x]!=num[y])
  {
   addeage(num[x],num[y],val);
  }
 }
}
int spfa(int sta,int end)
{
 queue<int>que;
 memset(instack,false,sizeof(instack));
 for(int i=1;i<=id;i++)
 {
  dis[i] = inf;
 }
 que.push(sta);
 instack[sta] = true;
 dis[sta] = 0;
 while(!que.empty())
 {
  int x = que.front();
  que.pop();
  instack[x] = false;
  for(int i=pt[x]; i!=-1; i=a[i].next)
  {
   int v = a[i].end;
   int val = a[i].val;
   if(dis[v] > dis[x] + val)
   {
    dis[v] = dis[x] + val;
    if(!instack[v])
    {
     que.push(v);
     instack[v] = true;
    }
   }
  }
 }
 return dis[end];
}


 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved