1. /*
  2. bfs+求树的直径
  3. 关键:if k<=maxs+1 直接输出k-1;
  4. else: k肯定的是包括最长路。先从最长路的起点出发,再走分支,最后到达最长路的终点。
  5. 因此是2*(k-(maxs+1))+maxs;
  6. */
  7. #include<stdio.h>
  8. #include<string.h>
  9. #include<stdlib.h>
  10. #include<algorithm>
  11. #include<iostream>
  12. #include<queue>
  13. #include<map>
  14. #include<math.h>
  15. using namespace std;
  16. typedef long long ll;
  17. //typedef __int64 int64;
  18. const int maxn = ;
  19. const int inf = 0x7fffffff;
  20. const double pi=acos(-1.0);
  21. const double eps = 1e-;
  22. struct Node{
  23. int v,next;
  24. }edge[ maxn<< ];
  25. int cnt,head[ maxn ];
  26. int vis[ maxn ],dis[ maxn ];
  27. int maxs,maxNode;
  28. void init(){
  29. cnt = ;
  30. memset( head,-,sizeof( head ) );
  31. }
  32. void addedge( int a,int b ){
  33. edge[ cnt ].v = b;
  34. edge[ cnt ].next = head[ a ];
  35. head[ a ] = cnt++;
  36.  
  37. edge[ cnt ].v = a;
  38. edge[ cnt ].next = head[ b ];
  39. head[ b ] = cnt++;
  40. }
  41. void bfs( int s,int n ){
  42. memset( vis,,sizeof( vis ) );
  43. vis[ s ] = ;
  44. queue<int>q;
  45. q.push( s );
  46. //for( int i=0;i<=n;i++ )
  47. //dis[ i ] = inf;
  48. dis[ s ] = ;
  49. maxs = ;
  50. while( !q.empty() ){
  51. int cur = q.front();
  52. q.pop();
  53. if( dis[ cur ]>maxs ){
  54. maxs = dis[ cur ];
  55. maxNode = cur;
  56. }
  57. //maxs = max( maxs,dis[ cur ] );
  58. for( int i=head[ cur ];i!=-;i=edge[ i ].next ){
  59. int v = edge[ i ].v;
  60. if( vis[ v ]== ) continue;
  61. vis[ v ] = ;
  62. dis[ v ] = dis[ cur ]+;
  63. q.push( v );
  64. }
  65. }
  66. return ;
  67. }
  68. int main(){
  69. int T;
  70. scanf("%d",&T);
  71. while( T-- ){
  72. int n,m;
  73. scanf("%d%d",&n,&m);
  74. int a,b;
  75. init();
  76. int N = n-;
  77. while( N-- ){
  78. scanf("%d%d",&a,&b);
  79. addedge( a,b );
  80. }
  81. bfs( ,n );
  82. bfs( maxNode,n );
  83. //maxs=the R of the tree
  84. while( m-- ){
  85. scanf("%d",&b);
  86. if( b<=maxs+ ) printf("%d\n",b-);
  87. else printf("%d\n",*(b-maxs-)+maxs);
  88. }
  89. }
  90. return ;
  91. }

HDU4607+BFS的更多相关文章

  1. HDU-4607 Park Visit bfs | DP | dfs

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4607 首先考虑找一条最长链长度k,如果m<=k+1,那么答案就是m.如果m>k+1,那么最 ...

  2. 图的遍历(搜索)算法(深度优先算法DFS和广度优先算法BFS)

    图的遍历的定义: 从图的某个顶点出发访问遍图中所有顶点,且每个顶点仅被访问一次.(连通图与非连通图) 深度优先遍历(DFS): 1.访问指定的起始顶点: 2.若当前访问的顶点的邻接顶点有未被访问的,则 ...

  3. 【BZOJ-1656】The Grove 树木 BFS + 射线法

    1656: [Usaco2006 Jan] The Grove 树木 Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 186  Solved: 118[Su ...

  4. POJ 3278 Catch That Cow(bfs)

    传送门 Catch That Cow Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 80273   Accepted: 25 ...

  5. POJ 2251 Dungeon Master(3D迷宫 bfs)

    传送门 Dungeon Master Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 28416   Accepted: 11 ...

  6. Sicily 1215: 脱离地牢(BFS)

    这道题按照题意直接BFS即可,主要要注意题意中的相遇是指两种情况:一种是同时到达同一格子,另一种是在移动时相遇,如Paris在(1,2),而Helen在(1,2),若下一步Paris到达(1,1),而 ...

  7. Sicily 1048: Inverso(BFS)

    题意是给出一个3*3的黑白网格,每点击其中一格就会使某些格子的颜色发生转变,求达到目标状态网格的操作.可用BFS搜索解答,用vector储存每次的操作 #include<bits/stdc++. ...

  8. Sicily 1444: Prime Path(BFS)

    题意为给出两个四位素数A.B,每次只能对A的某一位数字进行修改,使它成为另一个四位的素数,问最少经过多少操作,能使A变到B.可以直接进行BFS搜索 #include<bits/stdc++.h& ...

  9. Sicily 1051: 魔板(BFS+排重)

    相对1150题来说,这道题的N可能超过10,所以需要进行排重,即相同状态的魔板不要重复压倒队列里,这里我用map储存操作过的状态,也可以用康托编码来储存状态,这样时间缩短为0.03秒.关于康托展开可以 ...

随机推荐

  1. 第六十五篇、OC_iOS7 自定义转场动画push pop

    自定义转场动画,在iOS7及以上的版本才开始出现的,在一些应用中,我们常常需要定制自定义的的跳转动画 1.遵守协议:<UIViewControllerAnimatedTransitioning& ...

  2. 第二十九篇、CoreAnimation的使用

    使用的的三个步骤 1.初始化演员 2.设置好剧情 3.播放 主要类: CALayer // 绘图部分 CABaseAnimation // 基本动画(缩放,移动) CAKeyframeAnimatio ...

  3. XML解析的例子

    ////  main.m//  homewoek////  Created by hehe on 15/9/9.//  Copyright (c) 2015年 wang.hehe. All right ...

  4. 【转】JS函数的定义与调用方法

    JS函数调用的四种方法:方法调用模式,函数调用模式,构造器调用模式,apply,call调用模式 1.方法调用模式:先定义一个对象,然后在对象的属性中定义方法,通过myobject.property来 ...

  5. Node.js之【正则表达式函数之match、test、exec、search、split、replace使用详解】

    1. Match函数 使用指定的正则表达式函数对字符串惊醒查找,并以数组形式返回符合要求的字符串 原型:stringObj.match(regExp) 参数: stringObj 必选项,需要去进行匹 ...

  6. discuz X3.2邮箱非必填

    最近有个需求是:邮箱非必答,但是X3.2是邮箱必填: 找到资料:http://www.51php.com/discuz/17147.html 但是修改后不起作用!提示‘Email 地址无效’! 用fi ...

  7. 提升PHP性能的21种方法

    提升PHP性能的21种方法. 1.用单引号来包含字符串要比双引号来包含字符串更快一些.因为PHP会在双引号包围的字符串中搜寻变量,单引号则不会.2.如果能将类的方法定义成static,就尽量定义成st ...

  8. Spark小课堂Week3 FirstSparkApp(RDD开发)

    Spark小课堂Week3 FirstSparkApp 问题:Java有哪些数据结构 大致有如下几种,其中List与Map是最重要的: List Map Set Array Heap Stack Qu ...

  9. Python生成验证码

    #!/usr/bin/env python #coding:utf8 import random #方法1: str_code='zxcvbnmasdfghjklqwertyuiopZXCVBNMAS ...

  10. wxPython Modal Dialog 模式对话框

    <wxPython in Action>chap 9 笔记 1. Modal Dialog(模式对话框) A modal dialog blocks other widgets from ...