I - Navigation Nightmare 并查集
- F1 --- (13) ---- F6 --- (9) ----- F3
| |
(3) |
| (7)
F4 --- (20) -------- F2 |
| |
(2) F5
|
F7
Being an ASCII diagram, it is not precisely to scale, of course.
Each farm can connect directly to at most four other farms via roads that lead exactly north, south, east, and/or west. Moreover, farms are only located at the endpoints of roads, and some farm can be found at every endpoint of every road. No two roads cross, and precisely one path
(sequence of roads) links every pair of farms.
FJ lost his paper copy of the farm map and he wants to reconstruct it from backup information on his computer. This data contains lines like the following, one for every road:
There is a road of length 10 running north from Farm #23 to Farm #17
There is a road of length 7 running east from Farm #1 to Farm #17
...
As FJ is retrieving this data, he is occasionally interrupted by questions such as the following that he receives from his navigationally-challenged neighbor, farmer Bob:
What is the Manhattan distance between farms #1 and #23?
FJ answers Bob, when he can (sometimes he doesn't yet have enough data yet). In the example above, the answer would be 17, since Bob wants to know the "Manhattan" distance between the pair of farms.
The Manhattan distance between two points (x1,y1) and (x2,y2) is just |x1-x2| + |y1-y2| (which is the distance a taxicab in a large city must travel over city streets in a perfect grid to connect two x,y points).
When Bob asks about a particular pair of farms, FJ might not yet have enough information to deduce the distance between them; in this case, FJ apologizes profusely and replies with "-1".
Input
- * Line 1: Two space-separated integers: N and M
- * Lines 2..M+1: Each line contains four space-separated entities, F1,
F2, L, and D that describe a road. F1 and F2 are numbers of
two farms connected by a road, L is its length, and D is a
character that is either 'N', 'E', 'S', or 'W' giving the
direction of the road from F1 to F2.- * Line M+2: A single integer, K (1 <= K <= 10,000), the number of FB's
queries- * Lines M+3..M+K+2: Each line corresponds to a query from Farmer Bob
and contains three space-separated integers: F1, F2, and I. F1
and F2 are numbers of the two farms in the query and I is the
index (1 <= I <= M) in the data after which Bob asks the
query. Data index 1 is on line 2 of the input data, and so on.
Output
- * Lines 1..K: One integer per line, the response to each of Bob's
queries. Each line should contain either a distance
measurement or -1, if it is impossible to determine the
appropriate distance.
Sample Input
- 7 6
- 1 6 13 E
- 6 3 9 E
- 3 5 7 S
- 4 1 3 N
- 2 4 20 W
- 4 7 2 S
- 3
- 1 6 1
- 1 4 3
- 2 6 6
Sample Output
- 13
- -1
- 10
Hint
At time 3, the distance between 1 and 4 is still unknown.
At the end, location 6 is 3 units west and 7 north of 2, so the distance is 10.
- #include<iostream>
- #include<map>
- #include<string>
- #include<algorithm>
- #include<cstdio>
- #include<queue>
- #include<cstring>
- #include<cmath>
- #include<vector>
- #include<set>
- #include<queue>
- #include<iomanip>
- #include<iostream>
- using namespace std;
- #define MAXN 40003
- #define INF 0x3f3f3f3f
- typedef long long LL;
- //曼哈顿距离,用两个rank数组表示,不再并查集中为未知
- //难点在于 如何快速读取第I个指令后的信息
- //将所有疑问按照指令前后顺序排序,解决的答案带着标号进入数组,最后对该数组排序后输出即可!
- //NB!
- int pre[MAXN],r1[MAXN],r2[MAXN],n,m,k;//r1表示南北,r2表示东西
- struct node
- {
- int nth,from,to,info;
- }a[];
- struct vn
- {
- int nth,data;
- };
- vector<vn> ans;
- int find(int x)
- {
- if(pre[x]==-)
- return x;
- int fx = pre[x];
- pre[x] = find(fx);
- r1[x] += r1[fx];
- r2[x] += r2[fx];
- return pre[x];
- }
- void mix(int x,int y,int d,bool NS)
- {
- int fx = find(x),fy = find(y);
- if(fx!=fy)
- {
- pre[fy] = fx;
- if(NS)
- {
- r1[fy] = r1[x]-r1[y]+d;
- r2[fy] = r2[x]-r2[y];
- }
- else
- {
- r2[fy] = r2[x]-r2[y]+d;
- r1[fy] = r1[x]-r1[y];
- }
- }
- }
- int Dis(int x,int y)
- {
- int fx = find(x),fy = find(y);
- if(fx!=fy)
- return -;
- else
- {
- int d1 = r1[x]-r1[y],d2=r2[x]-r2[y];
- if(d1<) d1 = -d1;
- if(d2<) d2 = -d2;
- return d1+d2;
- }
- }
- bool cmp(node a,node b)
- {
- return a.info<b.info;
- }
- bool cmp1(vn a,vn b)
- {
- return a.nth<b.nth;
- }
- int main()
- {
- scanf("%d%d",&n,&m);
- memset(pre,-,sizeof(pre));
- memset(r1,,sizeof(r1));
- memset(r2,,sizeof(r2));
- int f1[MAXN],f2[MAXN],l[MAXN];
- char d[MAXN];
- for(int i=;i<=m;i++)
- {
- cin>>f1[i]>>f2[i]>>l[i]>>d[i];
- }
- cin>>k;
- for(int i=;i<=k;i++)
- {
- cin>>a[i].from>>a[i].to>>a[i].info;
- a[i].nth = i;
- }
- sort(a,a+k+,cmp);
- int p = ;
- vn t;
- bool f;
- for(int i=;i<=m;i++)
- {
- if(d[i]=='N'||d[i]=='S') f=true;
- else f = false;
- if(d[i]=='S'||d[i]=='W') l[i] = -l[i];
- mix(f1[i],f2[i],l[i],f);
- if(p<=k&&i==a[p].info)
- {
- while(p<=k&&a[p].info==i)
- {
- int tmp=Dis(a[p].from,a[p].to);
- t.data = tmp;
- t.nth = a[p].nth;
- ans.push_back(t);
- p++;
- }
- }
- }
- sort(ans.begin(),ans.end(),cmp1);
- for(int i=;i<ans.size();i++)
- {
- cout<<ans[i].data<<endl;
- }
- return ;
- }
I - Navigation Nightmare 并查集的更多相关文章
- POJ 1984 Navigation Nightmare 带全并查集
Navigation Nightmare Description Farmer John's pastoral neighborhood has N farms (2 <= N <= ...
- 【POJ 1984】Navigation Nightmare(带权并查集)
Navigation Nightmare Description Farmer John's pastoral neighborhood has N farms (2 <= N <= 40 ...
- BZOJ_3362_[Usaco2004 Feb]Navigation Nightmare 导航噩梦_并查集
BZOJ_3362_[Usaco2004 Feb]Navigation Nightmare 导航噩梦_并查集 Description 农夫约翰有N(2≤N≤40000)个农场,标号1到N,M( ...
- POJ 1984 Navigation Nightmare 【经典带权并查集】
任意门:http://poj.org/problem?id=1984 Navigation Nightmare Time Limit: 2000MS Memory Limit: 30000K To ...
- POJ1984:Navigation Nightmare(带权并查集)
Navigation Nightmare Time Limit: 2000MS Memory Limit: 30000K Total Submissions: 7871 Accepted: 2 ...
- 带权并查集【bzoj3362】: [Usaco2004 Feb]Navigation Nightmare 导航噩梦
[bzoj]3362: [Usaco2004 Feb]Navigation Nightmare 导航噩梦 农夫约翰有N(2≤N≤40000)个农场,标号1到N,M(2≤M≤40000)条的不同的垂 ...
- POJ1984 Navigation Nightmare —— 种类并查集
题目链接:http://poj.org/problem?id=1984 Navigation Nightmare Time Limit: 2000MS Memory Limit: 30000K T ...
- POJ 1984 - Navigation Nightmare - [带权并查集]
题目链接:http://poj.org/problem?id=1984 Time Limit: 2000MS Memory Limit: 30000K Case Time Limit: 1000MS ...
- POJ 1984 Navigation Nightmare(二维带权并查集)
题目链接:http://poj.org/problem?id=1984 题目大意:有n个点,在平面上位于坐标点上,给出m关系F1 F2 L D ,表示点F1往D方向走L距离到点F2,然后给出一系 ...
随机推荐
- Linux学习笔记之Linux相关知识
[想成为某一方面的大神,没有捷径可走,只能不断的记录.练习.总结.coding……] notes:主要从网上摘录了一些关于Linux的历史以及一些相关内容,以便对Linux系统有一定的了解.这不但可以 ...
- DP BestCoder Round #50 (div.2) 1003 The mook jong
题目传送门 /* DP:这题赤裸裸的dp,dp[i][1/0]表示第i块板放木桩和不放木桩的方案数.状态转移方程: dp[i][1] = dp[i-3][1] + dp[i-3][0] + 1; dp ...
- 二分图最大匹配(匈牙利算法) UVA 10080 Gopher II
题目传送门 /* 匈牙利算法:这题比UVA_670简单,注意是要被吃的鼠的最少个数,套模板 */ #include <cstdio> #include <algorithm> ...
- Android 性能优化(22)*性能工具之「Hierarchy Viewer」 Hierarchy Viewer Walkthrough
Hierarchy Viewer Walkthrough 1.In this document Prerequisites Setting the ANDROID_HVPROTO variable W ...
- native2ascii命令详解
1.native2ascii简介: native2ascii是sun java sdk提供的一个工具.用来将别的文本类文件(比如*.txt,*.ini,*.properties,*.java等等 ...
- CF869C The Intriguing Obsession
思路: 分别在两种不同颜色的岛屿群之间进行搭桥.因为相同颜色的岛屿之间不能有边,任意两个相同颜色的岛屿不能同时和另外一个不同颜色的岛屿都有边.实现: #include <bits/stdc++. ...
- 【C++】智能指针简述(一):智能指针的引入
智能指针是C++中一种利用RAII机制(后面解释),通过对象来管理指针的一种方式. 在C++中,动态开辟的内存需要我们自己去维护,在出函数作用域或程序异常退出之前,我们必须手动释放掉它,否则的话就会引 ...
- PostgreSQL 备忘
truncate table page_frame_mst; select setval('page_frame_mst_id_seq', 1, false): select setval('imag ...
- 关于WIN7开始“搜索程序和文件”
大家好,我是WIN7使用者.关于WIN7开始>搜索程序和文件,这点功能强大,但是本人电脑水平不好,几乎不怎么会用. 我知道可以找出相应的软件,但是我想知道的是,可以找出电脑相应的功能,到某个界面 ...
- [JavaScript] Uncaught TypeError: Method get Set.prototype.size called on incompatible receiver
在对Set进行方法扩展的时候,无法覆盖size属性 情景:定义一个SingletonSet,继承自Set,size只能为1,并且不能add和remove //首先是extend函数 var exten ...