Countries in War


Time Limit: 1000MS Memory Limit: 65536K

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 0

Sample 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

题意:国家战争是的间谍活动,间谍之间通过邮局来传递信息,不同的国家之间的邮局需要支付费用,而同一国家之间的邮局之间不需要费用,现在给你邮局之间的传递关系,和k次询问,每一次询问两邮局之间最小的花费

思路:由于同一国家之间不需要费用,所以首先缩地重新建图,建图以后点之间是不同的国家,然后用SPFA求最短路,会卡Floyd


#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <queue>
#include <stack>
#include <vector>
#include <algorithm> using namespace std; const int Max = 550; const int INF = 0x3f3f3f3f; typedef struct node
{
int v;
int va;
int next ; }Line; Line Li[Max*Max]; int Head[Max],top;
int head[Max];
int dfn[Max],low[Max],vis[Max],pre[Max],dep; int num,Map[510][510],dis[Max]; stack<int>S; void AddEdge(int u,int v,int k)
{
Li[top].v = v; Li[top].va =k; Li[top].next = Head[u]; Head[u] = top++;
} void addEdge(int u,int v,int k)
{
Li[top].v= v ;Li[top].va = k; Li[top].next = head[u]; head[u] = top++;
} void Tarjan(int u)
{
dfn[u] = low[u] = dep++; vis[u]=1; S.push(u); for(int i=Head[u]; i!=-1;i=Li[i].next)
{
int v = Li[i].v; if(vis[v]==1)
{
low[u] = min(low[u],dfn[v]);
}
else if(vis[v]==0)
{
Tarjan(v); low[u] = min(low[u],low[v]);
}
} if(low[u]==dfn[u])
{
while(!S.empty())
{
int v = S.top(); S.pop(); pre[v] = num; vis[v]=2; if(v==u)
{
break;
}
}
num++;
}
} void SPFA(int s)
{
for(int i=0;i<num;i++)
{
dis[i] = INF; vis[i] = 0;
} dis[s] = 0; vis[s]=1; queue<int>Q; Q.push(s); while(!Q.empty())
{
int u=Q.front(); Q.pop(); for(int i=head[u];i!=-1; i= Li[i].next)
{
int v = Li[i].v; if(dis[u]+Li[i].va<dis[v])
{
dis[v] = dis[u]+Li[i].va; if(!vis[v])
{
vis[v]=1; Q.push(v);
}
}
}
vis[u] = 0;
}
} int main()
{ int n,m;
while(~scanf("%d %d",&n,&m)&&(n+m))
{
int u,v,k; memset(Head,-1,sizeof(Head)); top = 0;dep = 0; num = 0; for(int i=1;i<=m;i++)
{
scanf("%d %d %d",&u,&v,&k); AddEdge(u,v,k);
} memset(vis,0,sizeof(vis)); for(int i=1;i<=n;i++)
{
if(!vis[i])
{
Tarjan(i);
}
}
memset(Map,INF,sizeof(Map)); memset(head,-1,sizeof(head)); for(int i=1;i<=n;i++)
{
for(int j = Head[i];j!=-1;j=Li[j].next)
{
int u =pre[i],v = pre[Li[j].v]; if(u!=v)
{
addEdge(u,v,Li[j].va);
}
}
}
for(int i=0;i<num;i++)
{
SPFA(i); for(int j = 0;j<num;j++)
{
Map[i][j]=dis[j]; }
} scanf("%d",&k); while(k--)
{
scanf("%d %d",&u,&v); if(Map[pre[u]][pre[v]]==INF)
{
printf("Nao e possivel entregar a carta\n");
}
else
{
printf("%d\n",Map[pre[u]][pre[v]]);
}
}
printf("\n");
}
return 0;
}

Countries in War -POJ3114Tarjan缩点+SPFA的更多相关文章

  1. POJ 3114 Countries in War(强连通)(缩点)(最短路)

                                    Countries in War Time Limit: 1000MS   Memory Limit: 65536K Total Sub ...

  2. POJ 3114 Countries in War(强连通+最短路)

    POJ 3114 Countries in War 题目链接 题意:给定一个有向图.强连通分支内传送不须要花费,其它有一定花费.每次询问两点的最小花费 思路:强连通缩点后求最短路就可以 代码: #in ...

  3. 【bzoj1179】[Apio2009]Atm Tarjan缩点+Spfa最长路

    题目描述 输入 第一行包含两个整数N.M.N表示路口的个数,M表示道路条数.接下来M行,每行两个整数,这两个整数都在1到N之间,第i+1行的两个整数表示第i条道路的起点和终点的路口编号.接下来N行,每 ...

  4. 洛谷 P3627 [APIO2009]抢掠计划 Tarjan缩点+Spfa求最长路

    题目地址:https://www.luogu.com.cn/problem/P3627 第一次寒假训练的结测题,思路本身不难,但对于我这个码力蒟蒻来说实现难度不小-考试时肛了将近两个半小时才刚肛出来. ...

  5. Countries in War (POJ 3114) Tarjan缩点+最短路

    题目大意: 在一个有向图中,每两点间通信需要一定的时间,但同一个强连通分量里传递信息不用时间,给两点u,v求他们最小的通信时间.   解题过程: 1.首先把强连通分量缩点,然后遍历每一条边来更新两个强 ...

  6. Countries in War(强连通分量及其缩点)

    http://poj.org/problem?id=3114 题意:有n个城市,m条边,由a城市到b城市的通信时间为w,若a城市与b城市连通,b城市与a城市也连通,则a,b城市之间的通信时间为0,求出 ...

  7. POJ3114 Countries in War (强连通分量 + 缩点 + 最短路径 + 好题)

    题目链接 题意是说在几个邮局之间传送一份信件,如果出发点和终止点在同一个国家传递,则时间为0,否则让你求花费最少时间,如果不能传到,则输出Nao e possivel entregar a carta ...

  8. POJ 3114 Countries in War(强联通分量+Tarjan)

    题目链接 题意 : 给你两个城市让你求最短距离,如果两个城市位于同一强连通分量中那距离为0. 思路 :强连通分量缩点之后,求最短路.以前写过,总感觉记忆不深,这次自己敲完再写了一遍. #include ...

  9. poj 3114(强连通缩点+SPFA)

    题目链接:http://poj.org/problem?id=3114 思路:题目要求很简单,就是求两点之间的花费的最短时间,不过有一个要求:如果这两个city属于同一个国家,则花费时间为0.如何判断 ...

随机推荐

  1. github for window的代理设置方法

    修改 .gitconfig 文件,主要是针对http 和 https进行修改,设置代理 [user] name = name email = mail@.com [http] proxy = 配置文件 ...

  2. c++输入一组整型数据 不知道长度 回车键结束 并将其存入数组当中

    #include "stdafx.h"#include<iostream>using namespace std;int main(){ int a[999];int ...

  3. ECharts饼图试玩

    处理类似提交问卷的数据,要生成图表,用了ECharts,好方便的. 简陋效果: 1.表单存储 有单选和多选题,单选直接存储各选项数字值,1,2,3,4...中一个:多选用|分隔存储选项值,如1|3,2 ...

  4. SQL的四种连接-左外连接、右外连接、内连接、全连接

    今天在看一个遗留系统的数据表的时候发现平时查找的视图是FULL OUT JOIN的,导致平时的数据记录要进行一些限制性处理,其实也可以设置视图各表为右外连接并在视图上设置各列的排序和筛选条件就可以达到 ...

  5. 手势响应 ,避免点击多个cell同时响应同一手势多次,只响应第一个cell

    http://www.cnblogs.com/wfwenchao/articles/3700205.html UIView除了负责展示内容给用户外还负责响应用户事件.本章主要介绍UIView用户交互相 ...

  6. oracle 解锁

    解决方法如下: 1:查V$DB_OBJECT_CACHE SELECT * FROM V$DB_OBJECT_CACHE WHERE name='CRM_LASTCHGINFO_DAY' AND LO ...

  7. JMeter学习-027-JMeter参数文件(脚本分发)路径问题:jmeter.threads.JMeterThread: Test failed! java.lang.IllegalArgumentException: File distributed.csv must exist and be readable解决方法

    前些天,在进行分布式参数化测试的时候,出现了如题所示的错误报错信息.此文,针对此做一个简略的重现及分析说明. JMX脚本线程组参数配置如下所示: 参数文件路径配置如下所示: 执行JMX脚本后,服务器对 ...

  8. Python开发【前端】:jQuery

    jQuery简介 jQuery是一个快速.简洁的JavaScript框架,是继Prototype之后又一个优秀的JavaScript代码库(或JavaScript框架).jQuery设计的宗旨是&qu ...

  9. setTimeout调用带参数的函数的方法

    function test(s){    alert(s);}window.setTimeout(function(){test('str');},1000);这样就可以了...为什么是这样呢.因为s ...

  10. Magento后台简单更换favicon.ico

    刚才需要更换网站的favicon.ico,就是浏览器url前面的那个小图标. 网上稍微搜搜一下,然后就震惊了,号多方法是替换文件的方法,而且文件散步在网站的各个角落. 其实,后台是有直接上传更换的方法 ...