HDU4607+BFS
- /*
- bfs+求树的直径
- 关键:if k<=maxs+1 直接输出k-1;
- else: k肯定的是包括最长路。先从最长路的起点出发,再走分支,最后到达最长路的终点。
- 因此是2*(k-(maxs+1))+maxs;
- */
- #include<stdio.h>
- #include<string.h>
- #include<stdlib.h>
- #include<algorithm>
- #include<iostream>
- #include<queue>
- #include<map>
- #include<math.h>
- using namespace std;
- typedef long long ll;
- //typedef __int64 int64;
- const int maxn = ;
- const int inf = 0x7fffffff;
- const double pi=acos(-1.0);
- const double eps = 1e-;
- struct Node{
- int v,next;
- }edge[ maxn<< ];
- int cnt,head[ maxn ];
- int vis[ maxn ],dis[ maxn ];
- int maxs,maxNode;
- void init(){
- cnt = ;
- memset( head,-,sizeof( head ) );
- }
- void addedge( int a,int b ){
- edge[ cnt ].v = b;
- edge[ cnt ].next = head[ a ];
- head[ a ] = cnt++;
- edge[ cnt ].v = a;
- edge[ cnt ].next = head[ b ];
- head[ b ] = cnt++;
- }
- void bfs( int s,int n ){
- memset( vis,,sizeof( vis ) );
- vis[ s ] = ;
- queue<int>q;
- q.push( s );
- //for( int i=0;i<=n;i++ )
- //dis[ i ] = inf;
- dis[ s ] = ;
- maxs = ;
- while( !q.empty() ){
- int cur = q.front();
- q.pop();
- if( dis[ cur ]>maxs ){
- maxs = dis[ cur ];
- maxNode = cur;
- }
- //maxs = max( maxs,dis[ cur ] );
- for( int i=head[ cur ];i!=-;i=edge[ i ].next ){
- int v = edge[ i ].v;
- if( vis[ v ]== ) continue;
- vis[ v ] = ;
- dis[ v ] = dis[ cur ]+;
- q.push( v );
- }
- }
- return ;
- }
- int main(){
- int T;
- scanf("%d",&T);
- while( T-- ){
- int n,m;
- scanf("%d%d",&n,&m);
- int a,b;
- init();
- int N = n-;
- while( N-- ){
- scanf("%d%d",&a,&b);
- addedge( a,b );
- }
- bfs( ,n );
- bfs( maxNode,n );
- //maxs=the R of the tree
- while( m-- ){
- scanf("%d",&b);
- if( b<=maxs+ ) printf("%d\n",b-);
- else printf("%d\n",*(b-maxs-)+maxs);
- }
- }
- return ;
- }
HDU4607+BFS的更多相关文章
- HDU-4607 Park Visit bfs | DP | dfs
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4607 首先考虑找一条最长链长度k,如果m<=k+1,那么答案就是m.如果m>k+1,那么最 ...
- 图的遍历(搜索)算法(深度优先算法DFS和广度优先算法BFS)
图的遍历的定义: 从图的某个顶点出发访问遍图中所有顶点,且每个顶点仅被访问一次.(连通图与非连通图) 深度优先遍历(DFS): 1.访问指定的起始顶点: 2.若当前访问的顶点的邻接顶点有未被访问的,则 ...
- 【BZOJ-1656】The Grove 树木 BFS + 射线法
1656: [Usaco2006 Jan] The Grove 树木 Time Limit: 5 Sec Memory Limit: 64 MBSubmit: 186 Solved: 118[Su ...
- POJ 3278 Catch That Cow(bfs)
传送门 Catch That Cow Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 80273 Accepted: 25 ...
- POJ 2251 Dungeon Master(3D迷宫 bfs)
传送门 Dungeon Master Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 28416 Accepted: 11 ...
- Sicily 1215: 脱离地牢(BFS)
这道题按照题意直接BFS即可,主要要注意题意中的相遇是指两种情况:一种是同时到达同一格子,另一种是在移动时相遇,如Paris在(1,2),而Helen在(1,2),若下一步Paris到达(1,1),而 ...
- Sicily 1048: Inverso(BFS)
题意是给出一个3*3的黑白网格,每点击其中一格就会使某些格子的颜色发生转变,求达到目标状态网格的操作.可用BFS搜索解答,用vector储存每次的操作 #include<bits/stdc++. ...
- Sicily 1444: Prime Path(BFS)
题意为给出两个四位素数A.B,每次只能对A的某一位数字进行修改,使它成为另一个四位的素数,问最少经过多少操作,能使A变到B.可以直接进行BFS搜索 #include<bits/stdc++.h& ...
- Sicily 1051: 魔板(BFS+排重)
相对1150题来说,这道题的N可能超过10,所以需要进行排重,即相同状态的魔板不要重复压倒队列里,这里我用map储存操作过的状态,也可以用康托编码来储存状态,这样时间缩短为0.03秒.关于康托展开可以 ...
随机推荐
- 第六十五篇、OC_iOS7 自定义转场动画push pop
自定义转场动画,在iOS7及以上的版本才开始出现的,在一些应用中,我们常常需要定制自定义的的跳转动画 1.遵守协议:<UIViewControllerAnimatedTransitioning& ...
- 第二十九篇、CoreAnimation的使用
使用的的三个步骤 1.初始化演员 2.设置好剧情 3.播放 主要类: CALayer // 绘图部分 CABaseAnimation // 基本动画(缩放,移动) CAKeyframeAnimatio ...
- XML解析的例子
//// main.m// homewoek//// Created by hehe on 15/9/9.// Copyright (c) 2015年 wang.hehe. All right ...
- 【转】JS函数的定义与调用方法
JS函数调用的四种方法:方法调用模式,函数调用模式,构造器调用模式,apply,call调用模式 1.方法调用模式:先定义一个对象,然后在对象的属性中定义方法,通过myobject.property来 ...
- Node.js之【正则表达式函数之match、test、exec、search、split、replace使用详解】
1. Match函数 使用指定的正则表达式函数对字符串惊醒查找,并以数组形式返回符合要求的字符串 原型:stringObj.match(regExp) 参数: stringObj 必选项,需要去进行匹 ...
- discuz X3.2邮箱非必填
最近有个需求是:邮箱非必答,但是X3.2是邮箱必填: 找到资料:http://www.51php.com/discuz/17147.html 但是修改后不起作用!提示‘Email 地址无效’! 用fi ...
- 提升PHP性能的21种方法
提升PHP性能的21种方法. 1.用单引号来包含字符串要比双引号来包含字符串更快一些.因为PHP会在双引号包围的字符串中搜寻变量,单引号则不会.2.如果能将类的方法定义成static,就尽量定义成st ...
- Spark小课堂Week3 FirstSparkApp(RDD开发)
Spark小课堂Week3 FirstSparkApp 问题:Java有哪些数据结构 大致有如下几种,其中List与Map是最重要的: List Map Set Array Heap Stack Qu ...
- Python生成验证码
#!/usr/bin/env python #coding:utf8 import random #方法1: str_code='zxcvbnmasdfghjklqwertyuiopZXCVBNMAS ...
- wxPython Modal Dialog 模式对话框
<wxPython in Action>chap 9 笔记 1. Modal Dialog(模式对话框) A modal dialog blocks other widgets from ...