1711: [Usaco2007 Open]Dining吃饭

Time Limit: 5 Sec  Memory Limit: 64 MB
Submit: 902  Solved: 476
[Submit][Status][Discuss]

Description

农夫JOHN为牛们做了很好的食品,但是牛吃饭很挑食. 每一头牛只喜欢吃一些食品和饮料而别的一概不吃.虽然他不一定能把所有牛喂饱,他还是想让尽可能多的牛吃到他们喜欢的食品和饮料. 农夫JOHN做了F (1 <= F <= 100) 种食品并准备了D (1 <= D <= 100) 种饮料. 他的N (1 <= N <= 100)头牛都以决定了是否愿意吃某种食物和喝某种饮料. 农夫JOHN想给每一头牛一种食品和一种饮料,使得尽可能多的牛得到喜欢的食物和饮料. 每一件食物和饮料只能由一头牛来用. 例如如果食物2被一头牛吃掉了,没有别的牛能吃食物2.

Input

* 第一行: 三个数: N, F, 和 D

* 第2..N+1行: 每一行由两个数开始F_i 和 D_i, 分别是第i 头牛可以吃的食品数和可以喝的饮料数.下F_i个整数是第i头牛可以吃的食品号,再下面的D_i个整数是第i头牛可以喝的饮料号码.

Output

* 第一行: 一个整数,最多可以喂饱的牛数.

Sample Input

4 3 3
2 2 1 2 3 1
2 2 2 3 1 2
2 2 1 3 1 2
2 1 1 3 3

输入解释:

牛 1: 食品从 {1,2}, 饮料从 {1,2} 中选
牛 2: 食品从 {2,3}, 饮料从 {1,2} 中选
牛 3: 食品从 {1,3}, 饮料从 {1,2} 中选
牛 4: 食品从 {1,3}, 饮料从 {3} 中选

Sample Output

3
输出解释:

一个方案是:
Cow 1: 不吃
Cow 2: 食品 #2, 饮料 #2
Cow 3: 食品 #1, 饮料 #1
Cow 4: 食品 #3, 饮料 #3
用鸽笼定理可以推出没有更好的解 (一共只有3总食品和饮料).当然,别的数据会更难.

HINT

 

Source

[Submit][Status][Discuss]

网络流,拆点建图,每一条流都对应着满足一头牛的方案。和今天考试T1贼像……

  1. #include <cstdio>
  2.  
  3. inline int nextChar(void) {
  4. const int siz = ;
  5.  
  6. static char buf[siz];
  7. static char *hd = buf + siz;
  8. static char *tl = buf + siz;
  9.  
  10. if (hd == tl)
  11. fread(hd = buf, , siz, stdin);
  12.  
  13. return *hd++;
  14. }
  15.  
  16. inline int nextInt(void) {
  17. register int ret = ;
  18. register int neg = false;
  19. register int bit = nextChar();
  20.  
  21. for (; bit < ; bit = nextChar())
  22. if (bit == '-')neg ^= true;
  23.  
  24. for (; bit > ; bit = nextChar())
  25. ret = ret * + bit - ;
  26.  
  27. return neg ? -ret : ret;
  28. }
  29.  
  30. inline int min(int a, int b)
  31. {
  32. return a < b ? a : b;
  33. }
  34.  
  35. const int siz = ;
  36. const int inf = ;
  37.  
  38. int tot;
  39. int s, t;
  40. int hd[siz];
  41. int to[siz];
  42. int fl[siz];
  43. int nt[siz];
  44.  
  45. inline void add(int u, int v, int f)
  46. {
  47. nt[tot] = hd[u]; to[tot] = v; fl[tot] = f; hd[u] = tot++;
  48. nt[tot] = hd[v]; to[tot] = u; fl[tot] = ; hd[v] = tot++;
  49. }
  50.  
  51. int dep[siz];
  52.  
  53. inline bool bfs(void)
  54. {
  55. static int que[siz], head, tail;
  56.  
  57. for (int i = s; i <= t; ++i)dep[i] = ;
  58.  
  59. dep[que[head = ] = s] = tail = ;
  60.  
  61. while (head != tail)
  62. {
  63. int u = que[head++], v;
  64.  
  65. for (int i = hd[u]; ~i; i = nt[i])
  66. if (!dep[v = to[i]] && fl[i])
  67. dep[que[tail++] = v] = dep[u] + ;
  68. }
  69.  
  70. return dep[t];
  71. }
  72.  
  73. int cur[siz];
  74.  
  75. int dfs(int u, int f)
  76. {
  77. if (u == t || !f)
  78. return f;
  79.  
  80. int used = , flow, v;
  81.  
  82. for (int i = cur[u]; ~i; i = nt[i])
  83. if (dep[v = to[i]] == dep[u] + && fl[i])
  84. {
  85. flow = dfs(v, min(fl[i], f - used));
  86.  
  87. used += flow;
  88. fl[i] -= flow;
  89. fl[i^] += flow;
  90.  
  91. if (used == f)
  92. return f;
  93.  
  94. if (fl[i])
  95. cur[u] = i;
  96. }
  97.  
  98. if (!used)
  99. dep[u] = ;
  100.  
  101. return used;
  102. }
  103.  
  104. inline int maxFlow(void)
  105. {
  106. int maxFlow = , newFlow;
  107.  
  108. while (bfs())
  109. {
  110. for (int i = s; i <= t; ++i)
  111. cur[i] = hd[i];
  112.  
  113. while (newFlow = dfs(s, inf))
  114. maxFlow += newFlow;
  115. }
  116.  
  117. return maxFlow;
  118. }
  119.  
  120. int N, F, D;
  121.  
  122. inline int cow(int x, int y)
  123. {
  124. return F + D + y * N + x;
  125. }
  126.  
  127. inline int food(int x)
  128. {
  129. return x;
  130. }
  131.  
  132. inline int drink(int x)
  133. {
  134. return x + F;
  135. }
  136.  
  137. signed main(void)
  138. {
  139. N = nextInt();
  140. F = nextInt();
  141. D = nextInt();
  142.  
  143. s = , t = N* + F + D + ;
  144.  
  145. for (int i = s; i <= t; ++i)
  146. hd[i] = -;
  147.  
  148. for (int i = ; i <= F; ++i)
  149. add(s, food(i), );
  150.  
  151. for (int i = ; i <= D; ++i)
  152. add(drink(i), t, );
  153.  
  154. for (int i = ; i <= N; ++i)
  155. {
  156. int f = nextInt();
  157. int d = nextInt();
  158.  
  159. add(cow(i, ), cow(i, ), );
  160.  
  161. for (int j = ; j <= f; ++j)
  162. add(food(nextInt()), cow(i, ), );
  163.  
  164. for (int j = ; j <= d; ++j)
  165. add(cow(i, ), drink(nextInt()), );
  166. }
  167.  
  168. printf("%d\n", maxFlow());
  169. }

@Author: YouSiki

BZOJ 1711: [Usaco2007 Open]Dining吃饭的更多相关文章

  1. bzoj 1711 [Usaco2007 Open]Dining吃饭&&poj 3281 Dining

    最大流. 这东西好像叫三分图匹配. 源点向每个食物点连一条容量为1的边. 每个饮料点向汇点连一条容量为1的边. 将每个牛点拆点,食物点向喜欢它的牛的入点连一条容量为1的边,牛的出点向它喜欢的饮料点连一 ...

  2. BZOJ 1711: [Usaco2007 Open]Dingin吃饭( 最大流 )

    将牛拆成两个点 i 和 i' 并连弧 , S 向每种 food 连边 , 每种 drink 向 T 连边 , 每种 food 向喜欢他的 cow 连边 到 i , 每种 drink 从喜欢它的 cow ...

  3. 【BZOJ】1711: [Usaco2007 Open]Dining吃饭

    [算法]最大流 [题解] S连向食物连向牛连向牛‘连向饮料连向T. 经典的一个元素依赖于两个元素的建图方式. #include<cstdio> #include<algorithm& ...

  4. BZOJ 1711: [Usaco2007 Open]Dingin吃饭

    Description 农夫JOHN为牛们做了很好的食品,但是牛吃饭很挑食. 每一头牛只喜欢吃一些食品和饮料而别的一概不吃.虽然他不一定能把所有牛喂饱,他还是想让尽可能多的牛吃到他们喜欢的食品和饮料. ...

  5. 1711: [Usaco2007 Open]Dingin吃饭

    1711: [Usaco2007 Open]Dingin吃饭 Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 560  Solved: 290[Submit ...

  6. BZOJ 1711:[Usaco2007 Open]Dining吃饭(最大流)

    [题目链接] http://www.lydsy.com/JudgeOnline/problem.php?id=1711 [题目大意] 每头牛都有一些喜欢的饮料和食物, 现在有一些食物和饮料,但是每样只 ...

  7. 【最大流】bzoj1711: [Usaco2007 Open]Dining吃饭

    正在网络流入门(原来这种题用网络流做) Description 农夫JOHN为牛们做了很好的食品,但是牛吃饭很挑食. 每一头牛只喜欢吃一些食品和饮料而别的一概不吃.虽然他不一定能把所有牛喂饱,他还是想 ...

  8. Bzoj1711 [Usaco2007 Open]Dining吃饭

    Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 872  Solved: 459 Description 农夫JOHN为牛们做了很好的食品,但是牛吃饭很挑食 ...

  9. BZOJ1711: [Usaco2007 Open]Dingin吃饭

    1711: [Usaco2007 Open]Dingin吃饭 Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 508  Solved: 259[Submit ...

随机推荐

  1. 高性能 TCP & UDP 通信框架 HP-Socket v3.5.2

    HP-Socket 是一套通用的高性能 TCP/UDP 通信框架,包含服务端组件.客户端组件和 Agent 组件,广泛适用于各种不同应用场景的 TCP/UDP 通信系统,提供 C/C++.C#.Del ...

  2. Hibernate入门详解

    学习Hibernate ,我们首先要知道为什么要学习它?它有什么好处?也就是我们为什么要学习框架技术? 还要知道    什么是Hibernate?    为什么要使用Hibernate?    Hib ...

  3. CSS3新特性应用之字体排印

    一.插入换行 ~:表示同辈元素之后指定类型的元素,如;elm1 ~ elm2表示,elm1之后的所有elm2元素,且elm1与elm2都是在同一个父级元素. +:表示同辈元素的兄弟元素. \A:一个空 ...

  4. webpack+react+antd 单页面应用实例

    React框架已经火了好长一段时间了,再不学就out了! 对React还没有了解的同学可以看看我之前的一篇文章,可以快速简单的认识一下React.React入门最好的实例-TodoList 自己从开始 ...

  5. js sort() reverse()

    数组中存在的两个方法:sort()和reverse() 直接用sort(),如下: ,,,,,,,,,,,]; console.log(array.sort());ps:[0, 1, 2, 2, 29 ...

  6. Android无需申请权限拨打电话

    Android打电话有两种实现方法: 第一种方法,拨打电话跳转到拨号界面.源代码如下: Intent intent = new Intent(Intent.ACTION_DIAL); Uri data ...

  7. 好玩的Handler

    Android提供了Handler和Looper来满足线程间的通信; Handler和Activity的任务栈不同,它是先进先出原则; Handler:你可以构造Handler对象来与Looper沟通 ...

  8. luke使用

    Luke介绍 Luke是一个方便的索引查看和诊断工具,可以访问Lucene构建的索引文件,显示和修改某些索引内容.能提供: 通过document编号或term浏览索引 查看document内容,可复制 ...

  9. js异步加载的3种方式(转载)

    1.defer标签 只支持IE    defer属性的定义和用法: 属性规定是否对脚本执行进行延迟,直到页面加载为止.有的 javascript 脚本 document.write 方法来创建当前的文 ...

  10. ORA-02020 : 过多的数据库链接在使用中-Windows环境解决步骤

    一.现象 编译存储过程时报ORA-02020错误. 错误详细信息:ORA-04052在查找远程对象 xx@yy时出错 ORA-00604 : 递归 SQL 级别 1 出现错误 ORA-02020 : ...