poj2391,poj2455
这两题本质是一致的;
一般来说,对于最长(短)化最短(长)的问题我们一般都使用二分答案+判定是否可行
因为这样的问题,我们一旦知道答案,就能知道全局信息
拿poj2455举例,对于二分出的一个答案,我们将不符合的边全部去掉,在做一遍最大流判断是否成立即可
注意这道题有重边,所以用链式前向星比较好(TT,当时我用的数组模拟邻接表表不要太烦)
type node=record
po,flow,cost:longint;
end;
var w,ow:array[..,..] of node;
cur,pre,numh,h,s,s0:array[..] of longint;
ans,max,mid,l,r,x,y,z,i,n,m,p:longint; procedure add(x,y,z,f:longint); //很繁琐的结构,需要检查好久,重边优先选择链式前向星,比较方便
begin
inc(s[x]);
w[x,s[x]].po:=y;
w[x,s[x]].cost:=z;
w[x,s[x]].flow:=f;
end; function maxflow(k:longint):boolean; //很喜欢写sap,判定
var j,sum,u,i,t,r,tmp:longint;
begin
max:=-;
fillchar(pre,sizeof(pre),);
fillchar(cur,sizeof(cur),);
fillchar(h,sizeof(h),);
fillchar(numh,sizeof(numh),); //一定要注意,这句话没有不影响程序结果,但会拖慢程序速度(相当于没用到GAP优化),谨记
fillchar(s0,sizeof(s0),);
for i:= to n do
for j:= to s[i] do
begin
if w[i,j].cost<=k then //根据条件构造新图
begin
inc(s0[i]);
ow[i,s0[i]]:=w[i,j];
end;
end;
numh[]:=n;
sum:=;
u:=;
while h[]<n do
begin
if u=n then
begin
i:=;
while i<>n do
begin
t:=cur[i];
if max<ow[i,t].cost then max:=ow[i,t].cost; //小优化而已,在最大流里面找一条最大的边,实际上答案是这个
dec(ow[i,t].flow);
i:=ow[i,t].po;
end;
inc(sum);
if sum=p then exit(true);
u:=;
end;
r:=-;
for i:= to s0[u] do
if (ow[u,i].flow>) and (h[u]=h[ow[u,i].po]+) then
begin
r:=i;
break;
end; if r<>- then
begin
cur[u]:=r;
pre[ow[u,r].po]:=u;
u:=ow[u,r].po;
end
else begin
dec(numh[h[u]]);
if numh[h[u]]= then exit(false);
tmp:=n; //注意这里千万不要顺手打成maxlongint之类
for i:= to s0[u] do
if (ow[u,i].flow>) and (tmp>h[ow[u,i].po]) then tmp:=h[ow[u,i].po];
h[u]:=tmp+;
inc(numh[h[u]]);
if u<> then u:=pre[u];
end;
end;
exit(false);
end; begin
readln(n,m,p);
for i:= to m do
begin
readln(x,y,z);
add(x,y,z,);
add(y,x,z,);
if z>r then r:=z;
end;
l:=;
while l<=r do
begin
mid:=(l+r) shr ;
if maxflow(mid) then
begin
ans:=max; //小小的优化,但不是所有二分判定都可以用
r:=max-;
end
else l:=mid+;
end;
writeln(ans);
end.
poj2391也是一样的,只不过多了floyd预处理
一般的,对于答案越大,决策就越有可能成功的这类具有单调性的题目,通常使用二分答案
poj2391,poj2455的更多相关文章
- Pyhton开源框架(加强版)
info:Djangourl:https://www.oschina.net/p/djangodetail: Django 是 Python 编程语言驱动的一个开源模型-视图-控制器(MVC)风格的 ...
- MPlayer
名称 mplayer − 电影播放器 mencoder − 电影编解码器 概要 mplayer [选项] [文件|URL|播放列表|−] mplayer [选项] 文件1 [指定选项] [文件 ...
- python 爬取腾讯微博并生成词云
本文以延参法师的腾讯微博为例进行爬取并分析 ,话不多说 直接附上源代码.其中有比较详细的注释. 需要用到的包有 BeautifulSoup WordCloud jieba # coding:utf-8 ...
- 面经 cisco
1. 优先级反转问题及解决方法 (1)什么是优先级反转 简单从字面上来说,就是低优先级的任务先于高优先级的任务执行了,优先级搞反了.那在什么情况下会生这种情况呢? 假设三个任务准备执行,A,B,C,优 ...
- linux驱动(续)
网络通信 --> IO多路复用之select.poll.epoll详解 IO多路复用之select.poll.epoll详解 目前支持I/O多路复用的系统调用有 select,psel ...
- HttpServletRequest对象(一)
javaweb学习总结(十)——HttpServletRequest对象(一) 一.HttpServletRequest介绍 HttpServletRequest对象代表客户端的请求,当客户端通过HT ...
- POJ2455 Secret Milking Machine【二分,最大流】
题目大意:N个点P条边,令存在T条从1到N的路径,求路径上的边权的最大值最小为多少 思路:做了好多二分+最大流的题了,思路很好出 二分出最大边权后建图,跑dinic 问题是....这题是卡常数的好题! ...
- 【poj2455】 Secret Milking Machine
http://poj.org/problem?id=2455 (题目链接) 题意 给出一张n个点,p条边的无向图,需要从1号节点走到n号节点一共T次,每条边只能经过1次,问T次经过的最大的边最小是多少 ...
- poj2391 Ombrophobic Bovines 拆点+二分法+最大流
/** 题目:poj2391 Ombrophobic Bovines 链接:http://poj.org/problem?id=2391 题意:有n块区域,第i块区域有ai头奶牛,以及一个可以容纳bi ...
随机推荐
- Java学习小结(1)-数组的创建与传参
(一)数组的创建 数组的创建包括两部分:数组的申明与分配内存空间. int score[]=null; //申明一维数组 score=new int[3]; //分配长度为3的空间 数组的申明还有另外 ...
- uva401 - Palindromes结题报告
题目地址 : http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_probl ...
- The Black Hole of Numbers (strtoint+inttostr+sort)
For any 4-digit integer except the ones with all the digits being the same, if we sort the digits in ...
- Java 多线程 简单实例 (Runnable)
1.多线程实例 package second; public class A implements Runnable { public char stat = '*'; public void run ...
- EXTJS4.2 控件之Grid getRowClass 添加行背景色
css 样式: /*交流管理系统 开始*/ tr.x-grid-record-blue .x-grid-td { background: #87CEFF; }/*grid 行颜色*/ tr.x-gri ...
- man手册使用
1.是普通的命令 2.是系统调用,如open,write之类的(通过这个,至少可以很方便的查到调用这个函数,需要加什么头文件) 3.是库函数,如printf,fread 4.是特殊文件,也就是/dev ...
- 提升网站性能之设置gzip
tomcat如何设置gzip: http://www.tuicool.com/articles/aMRRFre http://blog.csdn.net/xuefeng0707/article/det ...
- 1202: [HNOI2005]狡猾的商人 - BZOJ
Description 刁姹接到一个任务,为税务部门调查一位商人的账本,看看账本是不是伪造的.账本上记录了n个月以来的收入情况,其中第i 个月的收入额为Ai(i=1,2,3...n-1,n), .当 ...
- Maven 执行Javadoc时控制台输出乱码问题
1.0 Maven 执行Javadoc时控制台输出乱码问题 问题描述 最近项目中使用maven-javadoc-plugin生成javadoc时,myEclipse控制台乱码. 插件配置 问题分析 ...
- C#中 Thread.Sleep精度问题
Thread.Sleep的精度默认在15ms左右,如果需要类似 Thread.Sleep(1)的精细控制,需要调用特定的平台API实现 [DllImport("winmm.dll" ...