Countries in War
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 2314 Accepted: 721
DescriptionIn 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 0
Sample Output
0
6
6
0
Nao e possivel entregar a carta
10
Nao e possivel entregar a carta
0
题意:就是求最少花费的时间,在一个环内的花费为0,不能到达输出那一行字。
在环内的花费为0所以先用强连通tarjan算法处理一下,把环缩成一个点,然后重新建图求每个缩点之间的最小距离就好(跑最短路)。
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<queue>
#include<stack>
using namespace std;
const int MAXE=250010;
const int MAXN=510;
const int INF=9999999;
struct EDGE
{
int v,next;
int cost;
}edge[MAXE];
int head1[MAXN],size;
int pre[MAXN],low[MAXN],sccno[MAXN],sc_cnt,dfs_clock;
stack<int> S;
int w[MAXN][MAXN];
void init1()
{
memset(head1,-1,sizeof(head1));
memset(pre,0,sizeof(pre));
memset(sccno,0,sizeof(sccno));
size=sc_cnt=dfs_clock=0;
}
void add_edge1(int u,int v,int cost)
{
edge[size].v=v;
edge[size].cost=cost;
edge[size].next=head1[u];
head1[u]=size++;
}
void tarjan(int u)
{
low[u]=pre[u]=++dfs_clock;
S.push(u);
for(int i=head1[u];i!=-1;i=edge[i].next)
{
int v=edge[i].v;
if(!pre[v])
{
tarjan(v);
low[u]=min(low[u],low[v]);
}
else if(!sccno[v])
{
low[u]=min(low[u],pre[v]);
}
}
if(low[u]==pre[u])
{
sc_cnt++;
while(1)
{
int x=S.top();
S.pop();
sccno[x]=sc_cnt;
if(x==u)
break;
}
}
}
bool vis[MAXN];
int dist[MAXN];
void spfa(int s)
{
int i;
for(i=1;i<=sc_cnt;i++)
dist[i]=INF;
memset(vis,0,sizeof(vis));
dist[s]=0;
vis[s]=1;
queue<int> q;
q.push(s);
while(!q.empty())
{
int u=q.front();
q.pop();
vis[u]=0;
for(i=1;i<=sc_cnt;i++)
{
if(w[u][i]!=INF)
if(dist[i]>dist[u]+w[u][i])
{
dist[i]=dist[u]+w[u][i];
if(!vis[i])
{
vis[i]=1;
q.push(i);
}
}
}
}
}
int main()
{
int n,m,i,j;
//freopen("in.txt","r",stdin);
while(scanf("%d%d",&n,&m)!=EOF)
{
if(n==0)
break;
init1();
int u,v,c;
while(m--)
{
scanf("%d%d%d",&u,&v,&c);
add_edge1(u,v,c);
}
for(i=1;i<=n;i++)
if(!pre[i])
tarjan(i);
for(i=1;i<=sc_cnt;i++)
{
for(j=1;j<=n;j++)
w[i][j]=INF;
}
for(u=1;u<=n;u++)
{
for(i=head1[u];i!=-1;i=edge[i].next)
{
v=edge[i].v;
c=edge[i].cost;
if(sccno[u]!=sccno[v]&&w[sccno[u]][sccno[v]]>c)
{
w[sccno[u]][sccno[v]]=c;
}
}
}
int k;
scanf("%d",&k);
while(k--)
{
scanf("%d%d",&u,&v);
if(sccno[u]==sccno[v])
{
printf("0\n");
continue;
}
spfa(sccno[u]);
if(dist[sccno[v]]==INF)
{
printf("Nao e possivel entregar a carta\n");
}
else
printf("%d\n",dist[sccno[v]]);
}
printf("\n");
}
return 0;
}