题意:给定一棵树,询问两个节点的最近公共祖先。

输入:第一行T,表示测试组数。

每组测试数据包含一个n,表示节点数目,下面n-1行是连接的边,最后一行是询问

输出:共T行,代表每组的测试结果

  1. /*
  2. 倍增LCA
  3. 注意这是树,所以边是单向的,深搜的时候从根节点开始搜
  4. */
  5. #include<cstdio>
  6. #include<iostream>
  7. #include<cstring>
  8. #define M 10010
  9. #define S 20
  10. using namespace std;
  11. int head[M],deep[M],fa[M][S+],in[M],num,n;
  12. struct node
  13. {
  14. int u,v,pre;
  15. };node e[M*];
  16. void add(int x,int y)
  17. {
  18. ++num;
  19. e[num].u=x;
  20. e[num].v=y;
  21. e[num].pre=head[x];
  22. head[x]=num;
  23. }
  24. void dfs(int now,int from,int c)
  25. {
  26. fa[now][]=from;deep[now]=c;
  27. for(int i=head[now];i;i=e[i].pre)
  28. if(e[i].v!=from)
  29. dfs(e[i].v,now,c+);
  30. }
  31. void get_fa()
  32. {
  33. for(int j=;j<=S;j++)
  34. for(int i=;i<=n;i++)
  35. fa[i][j]=fa[fa[i][j-]][j-];
  36. }
  37. int get_same(int a,int t)
  38. {
  39. for(int i=;i<=S;i++)
  40. if(t&(<<i))
  41. a=fa[a][i];
  42. return a;
  43. }
  44. int LCA(int a,int b)
  45. {
  46. if(deep[a]<deep[b])swap(a,b);
  47. a=get_same(a,deep[a]-deep[b]);
  48. if(a==b)return a;
  49. for(int i=S;i>=;i--)
  50. if(fa[a][i]!=fa[b][i])
  51. {
  52. a=fa[a][i];
  53. b=fa[b][i];
  54. }
  55. return fa[a][];
  56. }
  57. void init()
  58. {
  59. scanf("%d",&n);
  60. for(int i=;i<n;i++)
  61. {
  62. int x,y;
  63. scanf("%d%d",&x,&y);
  64. in[y]++;
  65. add(x,y);
  66. }
  67. int p;
  68. for(int i=;i<=n;i++)
  69. if(!in[i])
  70. {
  71. p=i;
  72. break;
  73. }
  74. dfs(p,p,);
  75. get_fa();
  76. int a,b;
  77. scanf("%d%d",&a,&b);
  78. printf("%d\n",LCA(a,b));
  79. }
  80. int main()
  81. {
  82. int T;
  83. scanf("%d",&T);
  84. while(T--)
  85. {
  86. memset(e,,sizeof(e));
  87. memset(head,,sizeof(head));
  88. memset(deep,,sizeof(deep));
  89. memset(fa,,sizeof(fa));
  90. memset(in,,sizeof(in));
  91. num=;
  92. init();
  93. }
  94. return ;
  95. }

Nearest Common Ancestors(poj 1330)的更多相关文章

  1. Nearest Common Ancestors (POJ 1330)

    A rooted tree is a well-known data structure in computer science and engineering. An example is show ...

  2. POJ - 1330 Nearest Common Ancestors(基础LCA)

    POJ - 1330 Nearest Common Ancestors Time Limit: 1000MS   Memory Limit: 10000KB   64bit IO Format: %l ...

  3. POJ 1330 Nearest Common Ancestors(裸LCA)

    Nearest Common Ancestors Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 39596   Accept ...

  4. Nearest Common Ancestors(LCA板子)

    题目链接:http://poj.org/problem?id=1330 Nearest Common Ancestors Time Limit: 1000MS   Memory Limit: 1000 ...

  5. POJ 1330 Nearest Common Ancestors / UVALive 2525 Nearest Common Ancestors (最近公共祖先LCA)

    POJ 1330 Nearest Common Ancestors / UVALive 2525 Nearest Common Ancestors (最近公共祖先LCA) Description A ...

  6. POJ 1330 Nearest Common Ancestors(Tree)

    题目:Nearest Common Ancestors 根据输入建立树,然后求2个结点的最近共同祖先. 注意几点: (1)记录每个结点的父亲,比较层级时要用: (2)记录层级: (3)记录每个结点的孩 ...

  7. poj 1330 Nearest Common Ancestors(LCA 基于二分搜索+st&rmq的LCA)

    Nearest Common Ancestors Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 30147   Accept ...

  8. POJ 1330 Nearest Common Ancestors (LCA,dfs+ST在线算法)

    Nearest Common Ancestors Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 14902   Accept ...

  9. POJ 1330 Nearest Common Ancestors(lca)

    POJ 1330 Nearest Common Ancestors A rooted tree is a well-known data structure in computer science a ...

随机推荐

  1. jni log 使用

    1. 在源文件中添加头文件 #include <android/log.h> #define LOG_TAG "System.out.c" #define LOGD(. ...

  2. TCP的三次握手与四次挥手详解

    TCP的三次握手与四次挥手是TCP创建连接和关闭连接的核心流程,我们就从一个TCP结构图开始探究中的奥秘  序列号seq:占4个字节,用来标记数据段的顺序,TCP把连接中发送的所有数据字节都编上一个序 ...

  3. JavaScript判断数组是否包含指定元素的方法

    本文实例讲述了JavaScript判断数组是否包含指定元素的方法.分享给大家供大家参考.具体如下: 这段代码通过prototype定义了数组方法,这样就可以在任意数组调用contains方法 /** ...

  4. 洛谷 P1514 引水入城

    这次不说闲话了,直接怼题 这道题用bfs其实并不难想,但比较困难的是怎么解决满足要求时输出蓄水厂的数量.其实就像其他题解说的那样,我们可以用bfs将它转化成一个区间覆盖问题,然后再进行贪心. 首先枚举 ...

  5. mongodb测试类

    public class MongoManager { private static final String MONGO_DBNAME="local"; private stat ...

  6. iOS 高效 Mac 配置

    https://testerhome.com/topics/3045 https://support.apple.com/zh-cn/HT201236

  7. 初涉「带权并查集」&&bzoj3376: [Usaco2004 Open]Cube Stacking 方块游戏

    算是挺基础的东西 Description     约翰和贝茜在玩一个方块游戏.编号为1到n的n(1≤n≤30000)个方块正放在地上.每个构成一个立方柱.    游戏开始后,约翰会给贝茜发出P(1≤P ...

  8. GIMP用Path作画了解一下

    先准备好Path的底稿,只是实验学到的东西,粗糙了点.Paint through the Path,顾名思义,就是沿着Path作画: 1/如果选择的是Stroke line,可以根据自己的喜好,调节S ...

  9. laravel如何利用数据库的形式发送通知

    具体实现需要分几步: 1.修改驱动为database; 2.创建database的queue表 3.创建任务sendMessage 4.创建发送逻辑dispatch 5.启动队列 接下来我们进行实操: ...

  10. Spring核心技术(十二)——基于Java的容器配置(二)

    使用@Configuration注解 @Configuration注解是一个类级别的注解,表明该对象是用来指定Bean的定义的.@Configuration注解的类通过@Bean注解的方法来声明Bea ...