P1912: [Apio2010]patrol 巡逻
这道题讨论了好久,一直想不明白,如果按传统的随便某一个点出发找最长链,再回头,K=2 的时候赋了-1就没法用这种方法找最长链了,于是乎,更强的找最长链的方法就来了。。类似于DP的东西吧。先上代码:
- const maxn=;
- type
- node=record
- f,t,l:longint;
- end;
- var n,k,i,j,ans,num,f,t,diameter,s,sum:longint;
- b:array[..*maxn] of node;
- head,go1,go2:array[..maxn] of longint;
- procedure swap(var a,b:longint);
- var tem:longint;
- begin
- tem:=a; a:=b; b:=tem;
- end;
- procedure insert(num,f,t:longint);
- begin
- b[num].f:=head[f];
- b[num].t:=t;
- b[num].l:=;
- head[f]:=num;
- end;
- function dfs(x,f:longint):longint;
- var nowe,max1,max2,tem:longint;
- begin
- max1:=; max2:=; //tem:=0;
- nowe:=head[x];
- while nowe<> do
- begin
- if b[nowe].t=f then
- begin
- nowe:=b[nowe].f;
- continue;
- end;
- tem:=dfs(b[nowe].t,x)+b[nowe].l;
- if tem>max1 then begin
- go2[x]:=go1[x];
- go1[x]:=nowe;
- max2:=max1;
- max1:=tem;
- end
- else if tem>max2 then
- begin
- go2[x]:=nowe;
- max2:=tem;
- end;
- nowe:=b[nowe].f;
- end;
- if diameter<max1+max2 then
- begin
- diameter:=max1+max2;
- s:=x;
- end;
- exit(max1);
- end;
- begin
- readln(n,k);
- for i:= to n- do
- begin
- readln(f,t);
- insert(i*-,f,t);
- insert(i*,t,f);
- end;
- ans:=*(n-);
- diameter:=;
- sum:=dfs(,);
- ans:=ans-diameter+;
- if k> then
- begin
- diameter:=;
- i:=go1[s];
- while i<> do
- begin
- b[i].l:=-;
- i:=go1[b[i].t];
- end;
- i:=go2[s];
- while i<> do
- begin
- b[i].l:=-;
- i:=go1[b[i].t];
- end;
- t:=dfs(,);
- ans:=ans-diameter+;
- end;
- writeln(ans);
- end.
- int diameter,s; //树的直径为diameter,直径的起点是s
- int son1[MAXV],son2[MAXV]; //记录最长路与次长路的路径
- int DFS(int u,int fa)
- {
- int max1=,max2=; //与当前点相连的最长路与次长路 之和为不过fa的最长链,或者与fa相连并 //加上与fa相连边权值,作为连接fa可能的max1 或 max2
- for(int p=head[u];p!=-;p=edges[p].next)
- {
- int v=edges[p].v;
- if(v==fa) continue; //一直往下走,直到叶子节点
- int nowh=DFS(v,u)+edges[p].w;
- if(nowh>max1) max2=max1,son2[u]=son1[u],max1=nowh,son1[u]=p;
- else if(nowh>max2) max2=nowh,son2[u]=p;
- }
- if(diameter<max1+max2) diameter=max1+max2,s=u;
- return max1;
- }
而复杂度也是 O(n)的。
(转载请注明出处:http://www.cnblogs.com/Kalenda/)
P1912: [Apio2010]patrol 巡逻的更多相关文章
- 【BZOJ1912】[Apio2010]patrol 巡逻 树形DP
[BZOJ1912][Apio2010]patrol 巡逻 Description Input 第一行包含两个整数 n, K(1 ≤ K ≤ 2).接下来 n – 1行,每行两个整数 a, b, 表示 ...
- BZOJ 1912:[Apio2010]patrol 巡逻(树直径)
1912: [Apio2010]patrol 巡逻 Input 第一行包含两个整数 n, K(1 ≤ K ≤ 2).接下来 n – 1行,每行两个整数 a, b, 表示村庄a与b之间有一条道路(1 ≤ ...
- [Apio2010]patrol 巡逻
1912: [Apio2010]patrol 巡逻 Time Limit: 4 Sec Memory Limit: 64 MBSubmit: 2541 Solved: 1288[Submit][S ...
- BZOJ1912 [Apio2010]patrol 巡逻
本文版权归ljh2000和博客园共有,欢迎转载,但须保留此声明,并给出原文链接,谢谢合作. 本文作者:ljh2000作者博客:http://www.cnblogs.com/ljh2000-jump/转 ...
- 【树形dp 最长链】bzoj1912: [Apio2010]patrol 巡逻
富有思维性的树形dp Description Input 第一行包含两个整数 n, K(1 ≤ K ≤ 2).接下来 n – 1行,每行两个整数 a, b, 表示村庄a与b之间有一条道路(1 ≤ a, ...
- BZOJ1912:[APIO2010]patrol巡逻
Description Input 第一行包含两个整数 n, K(1 ≤ K ≤ 2).接下来 n – 1行,每行两个整数 a, b, 表示村庄a与b之间有一条道路(1 ≤ a, b ≤ n). Ou ...
- 【bzoj1912】 Apio2010—patrol 巡逻
http://www.lydsy.com/JudgeOnline/problem.php?id=1912 (题目链接) 题意 给出一棵树,要求在树上添加K(1 or 2)条边,添加的边必须经过一次,使 ...
- bzoj 1912 : [Apio2010]patrol 巡逻 树的直径
题目链接 如果k==1, 显然就是直径. k==2的时候, 把直径的边权变为-1, 然后在求一次直径. 变为-1是因为如果在走一次这条边, 答案会增加1. 学到了新的求直径的方法... #includ ...
- BZOJ 1912: [Apio2010]patrol 巡逻 (树的直径)(详解)
题目: https://www.lydsy.com/JudgeOnline/problem.php?id=1912 题解: 首先,显然当不加边的时候,遍历一棵树每条边都要经过两次.那么现在考虑k==1 ...
随机推荐
- VS2013连接不上TFS,TF31002记录
之前vs2013连接好好的,昨天就发现不行,类似如下错误 可能原因及解决办法: 1:C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\CONFIG 下的 Ma ...
- js获得浏览器的尺寸
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8&quo ...
- css规范大全
一.文件规范 1.文件均归档至约定的目录中 所有的CSS分为两大类:通用类和业务类.通用的CSS文件,放在如下目录中: 基本样式库 /css/core 通用UI元素样式库 /css/lib JS组件相 ...
- linux 下wifi 功能的实现
一.嵌入式linux四件套配置 1.网卡选型的依据: a.网卡不能乱选,否则没戏.网卡的依据是,kernel的menuconfig -> device drivers -> network ...
- 获取本地ip地址
#import <ifaddrs.h> #import <arpa/inet.h> // Get IP Address - (NSString *)getIPAddress { ...
- activiti搭建(四)八项服务介绍
转载请注明源地址:http://www.cnblogs.com/lighten/p/5927949.html 1.前言 之前学习的时候一直在其它文章看到activiti提供了七个接口来操作工作流,但在 ...
- NSLog的使用
1.NSLog会将字符串打印在两个地方:操作系统的控制台和IDE的控制台. 2.对于NSLog来说,它打印的一个目的地并非控制台,而是系统文件“system.log”. 它另一个输出的目的地并非IED ...
- jquery easyui combobox
$("#select_Dic").combobox({ url: "http://www.cnblogs.com/Ajax/ ...
- 两种会话状态之Session会话
什么是Session 使用Cookie和附加URL参数都可以将上一次请求的状态信息传递到下一次请求中,但是如果传递的状态信息较多,将极大降低网络传输效率和增大服务器端程序处理的难度. Session技 ...
- VPS centos 6 安装图形界面
在某种场合之下,我们使用的Linux还是要选择安装桌面环境的,所以在这里介绍一下如何给没有安装桌面环境的系统安装桌面环境.以Centos 6.5 为例演示一下如何安装桌面环境. 工具/原料 Linux ...