poj3281
非常非常经典的构图
有二分图学习基础的话,很容易想到这是一个“三分图”的匹配问题
我们将牛,food,drink作为点
为了方便,我们将牛放在中间,每头牛的出边指向drink种类,入边由food指入
建立超级源点指向所有food,超级汇点指向所有drink,
要满足最多的牛,也就是求一个最大流
但注意,如果这样求最大流的话,会经过牛点不止一次(因为牛会有多个入边和多个出边)
所以我们考虑将牛点拆为两个点,中间流量为1,这样就能保证牛只经过1次了
const max=;
var a:array[..,..] of longint;
numh,h,cur,pre:array[..] of longint;
n,t,i,j,m,s,f,d,ans,x:longint; procedure sap;
var i,j,flow,tmp,neck,u,k:longint;
begin
numh[]:=;
u:=;
while h[]<t+ do
begin
if u=t then
begin
i:=;
j:=cur[];
flow:=max;
while i<>t do //其实这个地方多余了,容易知道,瓶颈边的流量一定为1
begin
if flow>a[i,j] then
begin
neck:=i;
flow:=a[i,j];
end;
i:=j;
j:=cur[j];
end;
inc(ans,flow);
i:=;
j:=cur[i];
while i<>t do
begin
dec(a[i,j],flow);
inc(a[j,i],flow);
i:=j;
j:=cur[i];
end;
u:=neck;
end;
k:=-;
for i:= to t do
if (a[u,i]>) and (h[u]=h[i]+) then
begin
k:=i;
break;
end;
if k<>- then
begin
cur[u]:=k;
pre[k]:=u;
u:=k;
end
else begin
dec(numh[h[u]]);
if numh[h[u]]= then break; //GAP优化
tmp:=t+;
for i:= to t do
if (a[u,i]>) then tmp:=min(tmp,h[i]); //更新标号
h[u]:=tmp+;
inc(numh[h[u]]);
if u<> then u:=pre[u];
end;
end;
end; begin
readln(n,m,s);
fillchar(a,sizeof(a),);
t:=*n+m+s+; //计算建图后总点数
for i:= to m do
a[,*n+i]:=;
for i:= to s do
a[*n+m+i,t]:=;
for i:= to n do
a[i,i+n]:=;
for i:= to n do
begin
read(f,d);
for j:= to f do
begin
read(x);
a[*n+x,i]:=;
end;
for j:= to d do
begin
read(x);
a[i+n,*n+m+x]:=;
end;
end;
fillchar(cur,sizeof(cur),);
fillchar(pre,sizeof(pre),);
fillchar(h,sizeof(h),);
fillchar(numh,sizeof(numh),);
sap;
writeln(ans);
end.
这题带给我们两个启示:
拆点和建立超级源汇点是网络流构图的基础而又重要的部分
网络流的建图比较复杂(这题还算简单),要细心检查……;
poj3281的更多相关文章
- POJ3281 Dining —— 最大流 + 拆点
题目链接:https://vjudge.net/problem/POJ-3281 Dining Time Limit: 2000MS Memory Limit: 65536K Total Subm ...
- Dining(POJ-3281)【最大流】
题目链接:https://vjudge.net/problem/POJ-3281 题意:厨师做了F种菜各一份,D种饮料各一份,另有N头奶牛,每只奶牛只吃特定的菜和饮料,问该厨师最多能满足多少头奶牛? ...
- POJ-3281(最大流+EK算法)
Dining POJ-3281 这道题目其实也是网络流中求解最大流的一道模板题. 只要建模出来以后直接套用模板就行了.这里的建模还需要考虑题目的要求:一种食物只能给一只牛. 所以这里可以将牛拆成两个点 ...
- poj3281 Dining
Dining Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 14316 Accepted: 6491 Descripti ...
- POJ3281 Dining(拆点构图 + 最大流)
题目链接 题意:有F种食物,D种饮料N头奶牛,只能吃某种食物和饮料(而且只能吃特定的一份) 一种食物被一头牛吃了之后,其余牛就不能吃了第一行有N,F,D三个整数接着2-N+1行代表第i头牛,前面两个整 ...
- POJ3281 Dining 最大流
题意:有f种菜,d种饮品,每个牛有喜欢的一些菜和饮品,每种菜只能被选一次,饮品一样,问最多能使多少头牛享受自己喜欢的饮品和菜 分析:建边的时候,把牛拆成两个点,出和入 1,源点向每种菜流量为1 2,每 ...
- poj3281(最大流)
传送门:Dining 题意:一些牛,一些食物,一些饮料,每头牛都有其喜欢的几种食物和几种饮料,求最多能给多少头牛即找到食物又找到饮料~也就是有多少个 牛---食物---饮料 的匹配,而且满足一一匹配, ...
- poj-3281(拆点+最大流)
题意:有n头牛,f种食物,d种饮料,每头牛有自己喜欢的食物和饮料,问你最多能够几头牛搭配好,每种食物或者饮料只能一头牛享用: 解题思路:把牛拆点,因为流过牛的流量是由限制的,只能为1,然后,食物和牛的 ...
- poj3281构图题
题目大意:有F种食物,D种饮料N头奶牛,只能吃某种食物和饮料(而且只能吃特定的一份)一种食物被一头牛吃了之后,其余牛就不能吃了第一行有N,F,D三个整数接着2-N+1行代表第i头牛,前面两个整数是Fi ...
随机推荐
- CentOS6.5 MySQL 配置设置总结笔记
三.登录MySQL 登录MySQL的命令是mysql, mysql 的使用语法如下: mysql [-u username] [-h host] [-p[password]] [dbname] u ...
- VB.Net 字符串加密类
Public Class Cls_JM '使用 'Dim Jm As New Cls_JM(2) 'Dim strTmp As String 'Jm.jiemi(strTmp) 'Jm.Jiami(s ...
- 电网SVG简介
目 录1. 范围 12. 规范性引用文件 13. 缩略语 14. 本标准涉及的图形交换特征 ...
- php校验
//校验function filters($grams){ if(get_magic_quotes_gpc()) { $resgram = trim($grams); ...
- lazy instructor
Description A math instructor is too lazy to grade a question in the exam papers in which students a ...
- ViewData,ViewBag和TempData
ViewData ViewBag TempData 类型 字典 Dynamic TempDataDictionary 出生时间 MVC1 MVC3 框架版本 .net3.5 .net4.0 ...
- Insist
1.怎么自动截断文本? 如题,当数据库中的数据内容超出了要显示的长度时,如果不采取措施,会破坏页面的布局美观,所以可以采用自动截断文本,需要查看的时候再把其他的内容显示出来. 没截断的时候如下图: 再 ...
- UUID为36位
package util; import java.util.UUID; public class UUIDUtil { public static UUID getId(){ return UUID ...
- ssh scp访问ipv6地址
从这里学来的.http://blog.mattandanne.org/2012/01/sftpscp-and-ipv6-link-local-addresses.html当采用ipv6的地址去连接另外 ...
- [转载]WCF序列化65536大小限制的问题
错误: The formatter threw an exception while trying to deserialize the message: There was an error whi ...