Distance Queries
Time Limit: 2000MS   Memory Limit: 30000K
Total Submissions: 8638   Accepted: 3032
Case Time Limit: 1000MS

Description

Farmer John's cows refused to run in his marathon since he chose a path much too long for their leisurely lifestyle. He therefore wants to find a path of a more reasonable length. The input to this problem consists of the same input as in "Navigation Nightmare",followed by a line containing a single integer K, followed by K "distance queries". Each distance query is a line of input containing two integers, giving the numbers of two farms between which FJ is interested in computing distance (measured in the length of the roads along the path between the two farms). Please answer FJ's distance queries as quickly as possible! 

Input

* Lines 1..1+M: Same format as "Navigation Nightmare"

* Line 2+M: A single integer, K. 1 <= K <= 10,000

* Lines 3+M..2+M+K: Each line corresponds to a distance query and contains the indices of two farms.

Output

* Lines 1..K: For each distance query, output on a single line an integer giving the appropriate distance. 

Sample Input

  1. 7 6
  2. 1 6 13 E
  3. 6 3 9 E
  4. 3 5 7 S
  5. 4 1 3 N
  6. 2 4 20 W
  7. 4 7 2 S
  8. 3
  9. 1 6
  10. 1 4
  11. 2 6

Sample Output

  1. 13
  2. 3
  3. 36

Hint

Farms 2 and 6 are 20+3+13=36 apart. 

Source

 
lca
  1. #include <iostream>
  2. #include <cstdio>
  3. #include <cstring>
  4. #include <algorithm>
  5. #include <stack>
  6. #include <vector>
  7.  
  8. using namespace std;
  9.  
  10. const int MAX_N = ;
  11. int N,M;
  12. int first[MAX_N],Next[ * MAX_N],v[ * MAX_N];
  13. int id[MAX_N],vs[ * MAX_N];
  14. int dep[MAX_N * ],d[MAX_N * ][],qid[MAX_N * ][];
  15. int Dis[MAX_N],w[MAX_N * ];
  16. int n;
  17.  
  18. void RMQ() {
  19. for(int i = ; i <= n; ++i) {
  20. d[i][] = dep[i];
  21. qid[i][] = i;
  22. }
  23.  
  24. for(int j = ; ( << j) <= n; ++j) {
  25. for(int i = ; i + ( << j) - <= n; ++i) {
  26. if(d[i][j - ] > d[i + ( << (j - ))][j - ]) {
  27. d[i][j] = d[i + ( << (j - ))][j - ];
  28. qid[i][j] = qid[i + ( << (j - ))][j - ];
  29. } else {
  30. d[i][j] = d[i][j - ];
  31. qid[i][j] = qid[i][j - ];
  32. }
  33. }
  34. }
  35.  
  36. }
  37.  
  38. void add_edge(int id,int u) {
  39. int e = first[u];
  40. Next[id] = e;
  41. first[u] = id;
  42. }
  43.  
  44. int query(int L,int R) {
  45. int k = ;
  46. while(( << (k + )) < (R - L + )) ++k;
  47. return d[L][k] < d[R - ( << k) + ][k] ?
  48. qid[L][k] : qid[R - ( << k) + ][k];
  49. }
  50.  
  51. void dfs(int u,int fa,int d,int dis,int &k) {
  52. id[u] = k;
  53. vs[k] = u;
  54. dep[k++] = d;
  55. Dis[u] = dis;
  56. for(int e = first[u]; e != -; e = Next[e]) {
  57. if(v[e] != fa) {
  58. dfs(v[e],u,d + ,dis + w[e],k);
  59. vs[k] = u;
  60. dep[k++] = d;
  61. }
  62. }
  63. }
  64.  
  65. int main()
  66. {
  67. // freopen("sw.in","r",stdin);
  68. scanf("%d%d",&N,&M);
  69. n = * N - ;
  70.  
  71. for(int i = ; i <= N; ++i) first[i] = -;
  72. for(int i = ; i <= * M; i += ) {
  73. int u;
  74. char ch;
  75. scanf("%d%d%d %c",&u,&v[i],&w[i],&ch);
  76. //printf("%d %d %d\n",u,v[i],w[i]);
  77. w[i + ] = w[i];
  78. v[i + ] = u;
  79. add_edge(i,u);
  80. add_edge(i + ,v[i]);
  81. }
  82.  
  83. int k = ;
  84. dfs(,-,,,k);
  85. RMQ();
  86.  
  87. int Q;
  88. scanf("%d",&Q);
  89. for(int i = ; i <= Q; ++i) {
  90. int a,b;
  91. scanf("%d%d",&a,&b);
  92. int p = vs[ query(min(id[a],id[b]),max(id[a],id[b])) ];
  93. printf("%d\n",Dis[a] + Dis[b] - * Dis[p]);
  94. }
  95.  
  96. return ;
  97. }

poj 1986的更多相关文章

  1. POJ 1986 Distance Queries(Tarjan离线法求LCA)

    Distance Queries Time Limit: 2000MS   Memory Limit: 30000K Total Submissions: 12846   Accepted: 4552 ...

  2. POJ 1986 Distance Queries / UESTC 256 Distance Queries / CJOJ 1129 【USACO】距离咨询(最近公共祖先)

    POJ 1986 Distance Queries / UESTC 256 Distance Queries / CJOJ 1129 [USACO]距离咨询(最近公共祖先) Description F ...

  3. POJ.1986 Distance Queries ( LCA 倍增 )

    POJ.1986 Distance Queries ( LCA 倍增 ) 题意分析 给出一个N个点,M条边的信息(u,v,w),表示树上u-v有一条边,边权为w,接下来有k个询问,每个询问为(a,b) ...

  4. POJ 1986 Distance Queries LCA两点距离树

    标题来源:POJ 1986 Distance Queries 意甲冠军:给你一棵树 q第二次查询 每次你问两个点之间的距离 思路:对于2点 u v dis(u,v) = dis(root,u) + d ...

  5. poj 1986 Distance Queries LCA

    题目链接:http://poj.org/problem?id=1986 Farmer John's cows refused to run in his marathon since he chose ...

  6. POJ 1986 - Distance Queries - [LCA模板题][Tarjan-LCA算法]

    题目链接:http://poj.org/problem?id=1986 Description Farmer John's cows refused to run in his marathon si ...

  7. POJ 1986 Distance Queries 【输入YY && LCA(Tarjan离线)】

    任意门:http://poj.org/problem?id=1986 Distance Queries Time Limit: 2000MS   Memory Limit: 30000K Total ...

  8. POJ 1986:Distance Queries(倍增求LCA)

    http://poj.org/problem?id=1986 题意:给出一棵n个点m条边的树,还有q个询问,求树上两点的距离. 思路:这次学了一下倍增算法求LCA.模板. dp[i][j]代表第i个点 ...

  9. poj 1986 Distance Queries(LCA:倍增/离线)

    计算树上的路径长度.input要去查poj 1984. 任意建一棵树,利用树形结构,将问题转化为u,v,lca(u,v)三个点到根的距离.输出d[u]+d[v]-2*d[lca(u,v)]. 倍增求解 ...

  10. POJ 1986:Distance Queries

    Distance Queries Time Limit: 2000MS   Memory Limit: 30000K Total Submissions: 18139   Accepted: 6248 ...

随机推荐

  1. OC编写使用调试器

    OC编写使用调试器 编写代码免不了,Bug.那么Debug就是程序员的必备技能了.本文和大家一起探讨,如何在应用开发编写代码过程中,使用日志项消息:以及使用动作.条件.迭代控制增强断点. 记录信息 在 ...

  2. LN : leetcode 292 Nim Game

    lc 292 Nim Game 292 Nim Game You are playing the following Nim Game with your friend: There is a hea ...

  3. oracle-审计导数

    1.因审计需求,需要将MySQL.Oracle数据库中需要的表数据导入到SqlSERVER进行审计. 2.之前的方法:   A. oracle组将表dump下来,进行压缩,传送到oracle导数服务器 ...

  4. centos rsync安装配置

    安装 1 yum -y install rsync ---------------------服务器安装------------------------------- 创建基础配置文件 1 2 3 4 ...

  5. discuz分类信息地区联动菜单字段

    1 = 河南省 1.1 = 郑州市 1.1.1 = 中原区 1.1.2 = 二七区 1.1.3 = 管城区 1.1.4 = 金水区 1.1.5 = 上街区 1.1.6 = 惠济区 1.1.7 = 巩义 ...

  6. StatusBar & StatusBarItem

    StatusBar & StatusBarItem StatusBar StatusBar class StatusBarItem StatusBarItem class Example &l ...

  7. QT 十六进制字符串转化为十六进制编码

    /*************************************************Function: hexStringtoByteArray()Description: 十六进制字 ...

  8. 查看图片真正的格式,在不知道扩展名的情况下区分是jpeg还是bmp

    用系统自带的画图软件打开图片,然后按文件-->另存为就会弹出保存窗口.保存窗口的保存类形就是"照片真正的格式".

  9. unity2d之2d帧动画创建

    在2d游戏中帧动画的应用是非常广泛的,那么如何在unity中创建一个帧动画,主要是下面几个步骤. 原文地址  :http://blog.csdn.net/dingkun520wy/article/de ...

  10. ubuntu 13.04 163源(亲测可用)

    # deb cdrom:[Ubuntu )]/ trusty main restricted # See http://help.ubuntu.com/community/UpgradeNotes f ...