poj 3281 Dining(网络流+拆点)

Dining

Time Limit: 2000MS   Memory Limit: 65536K
Total Submissions: 20052   Accepted: 8915

Description

Cows are such finicky eaters. Each cow has a preference for certain foods and drinks, and she will consume no others.

Farmer John has cooked fabulous meals for his cows, but he forgot to check his menu against their preferences. Although he might not be able to stuff everybody, he wants to give a complete meal of both food and drink to as many cows as possible.

Farmer John has cooked F (1 ≤ F ≤ 100) types of foods and prepared D (1 ≤ D ≤ 100) types of drinks. Each of his N (1 ≤ N ≤ 100) cows has decided whether she is willing to eat a particular food or drink a particular drink. Farmer John must assign a food type and a drink type to each cow to maximize the number of cows who get both.

Each dish or drink can only be consumed by one cow (i.e., once food type 2 is assigned to a cow, no other cow can be assigned food type 2).

Input

Line 1: Three space-separated integers: NF, and D 
Lines 2..N+1: Each line i starts with a two integers Fi and Di, the number of dishes that cow i likes and the number of drinks that cow i likes. The next Fi integers denote the dishes that cow i will eat, and the Di integers following that denote the drinks that cow i will drink.

Output

Line 1: A single integer that is the maximum number of cows that can be fed both food and drink that conform to their wishes

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

Sample Output

3

Hint

One way to satisfy three cows is: 
Cow 1: no meal 
Cow 2: Food #2, Drink #2 
Cow 3: Food #1, Drink #1 
Cow 4: Food #3, Drink #3 
The pigeon-hole principle tells us we can do no better since there are only three kinds of food or drink. Other test data sets are more challenging, of course.

Source

USACO 2007 Open Gold

分析

拆点+网络流最大流

code

 1 #include<cstdio>
 2 #include<algorithm>
 3
 4 using namespace std;
 5
 6 const int INF = 1e9;
 7 const int N = 10010;
 8
 9 struct Edge{
10     int to,nxt,c;
11 }e[N];
12 int head[N],dis[N],cur[N],q[500100];
13 int tot = 1,L,R,S,T;
14
15 inline char nc() {
16     static char buf[100000],*p1 = buf,*p2 = buf;
17     return p1==p2&&(p2=(p1=buf)+fread(buf,1,100000,stdin),p1==p2)?EOF:*p1++;
18 }
19 inline int read() {
20     int x = 0,f = 1;char ch = nc();
21     for (; ch<‘0‘||ch>‘9‘; ch = nc()) if (ch==‘-‘) f = -1;
22     for (; ch>=‘0‘&&ch<=‘9‘; ch = nc()) x = x * 10 + ch - ‘0‘;
23     return x * f;
24 }
25 inline void add_edge(int u,int v,int w) {
26     e[++tot].to = v,e[tot].c = w,e[tot].nxt = head[u],head[u] = tot;
27     e[++tot].to = u,e[tot].c = 0,e[tot].nxt = head[v],head[v] = tot;
28 }
29 bool bfs() {
30     for (int i=0; i<=T; ++i) {
31         cur[i] = head[i];dis[i] = -1;
32     }
33     L = 1;R = 0;
34     q[++R] = S;dis[S] = 0;
35     while (L <= R) {
36         int u = q[L++];
37         for (int i=head[u]; i; i=e[i].nxt) {
38             int v = e[i].to,c = e[i].c;
39             if (dis[v]==-1 && c>0) {
40                 dis[v] = dis[u] + 1;
41                 q[++R] = v;
42                 if (v==T) return true;
43             }
44         }
45     }
46     return false;
47 }
48 int dfs(int u,int flow) {
49     if (u==T) return flow;
50     int used = 0;
51     for (int &i=cur[u]; i; i=e[i].nxt) {
52         int v = e[i].to,c = e[i].c;
53         if (dis[v]==dis[u]+1 && c>0) {
54             int tmp = dfs(v,min(c,flow-used));
55             if (tmp > 0) {
56                 e[i].c -= tmp;e[i^1].c += tmp;
57                 used += tmp;
58                 if (used==flow) break;
59             }
60         }
61     }
62     if (used!=flow) dis[u] = -1;
63     return used;
64 }
65 inline int dinic() {
66     int ans = 0;
67     while (bfs()) ans += dfs(S,INF);
68     return ans;
69 }
70 int main() {
71     int n = read(),F = read(),D = read();
72     S = 0,T = n+n+F+D+1;
73     for (int i=1; i<=n; ++i) {
74         int f = read(),d = read();
75         for (int a,j=1; j<=f; ++j)
76             a = read(),add_edge(a+n+n,i,1);
77         for (int a,j=1; j<=d; ++j)
78             a = read(),add_edge(i+n,a+n+n+F,1);
79     }
80     for (int i=1; i<=n; ++i) add_edge(i,i+n,1);
81     for (int i=1; i<=F; ++i) add_edge(S,i+n+n,1);
82     for (int i=1; i<=D; ++i) add_edge(i+n+n+F,T,1);
83     printf("%d",dinic());
84     return 0;
85 }
时间: 2024-08-24 08:49:57

poj 3281 Dining(网络流+拆点)的相关文章

POJ 3281 Dining (网络流最大流 拆点建图 Edmonds-Karp算法)

Dining Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 10159   Accepted: 4676 Description Cows are such finicky eaters. Each cow has a preference for certain foods and drinks, and she will consume no others. Farmer John has cooked fabulo

POJ 3281 Dining (网络流之最大流)

题意:农夫为他的 N (1 ≤ N ≤ 100) 牛准备了 F (1 ≤ F ≤ 100)种食物和 D (1 ≤ D ≤ 100) 种饮料.每头牛都有各自喜欢的食物和饮料, 而每种食物或饮料只能分配给一头牛.最多能有多少头牛可以同时得到喜欢的食物和饮料? 析:是一个经典网络流的题,建立一个超级源点,连向每种食物,建立一个超级汇点,连向每种饮料,然后把每头牛拆成两个点, 一个和食物连,一个和饮料连,最后跑一遍最大流即可. 代码如下: #pragma comment(linker, "/STACK:

POJ 3281 Dining(最大流建图 &amp;&amp; ISAP &amp;&amp; 拆点)

题目链接:http://poj.org/problem?id=3281 努力练建图ing!!! 题意:有 N 头牛,有 F 种食物和 D 种饮料,每种食物或饮料只能供一头牛享用,且每头牛只享用一种食物和一种饮料. 第2行-第N+1行.是牛i 喜欢A种食物,B种饮料,及食物种类列表和饮料种类列表. 问最多能使几头牛同时享用到自己喜欢的食物和饮料.->最大流. 本题难点是建图: 思路:一般都是左边一个集合表示源点与供应相连,右边一个集合表示需求与汇点相连. 但是本题,牛作为需求仍然是一个群体,但是供

POJ 3281 Dining(网络最大流)

http://poj.org/problem?id=3281 Dining Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 9121   Accepted: 4199 Description Cows are such finicky eaters. Each cow has a preference for certain foods and drinks, and she will consume no others.

poj 3281 Dining(最大流)

poj 3281 Dining Description Cows are such finicky eaters. Each cow has a preference for certain foods and drinks, and she will consume no others. Farmer John has cooked fabulous meals for his cows, but he forgot to check his menu against their prefer

POJ 3281 Dining(最大流)

POJ 3281 Dining 题目链接 题意:n个牛,每个牛有一些喜欢的食物和饮料,每种食物饮料只有一个,问最大能匹配上多少只牛每个牛都能吃上喜欢的食物和喜欢的饮料 思路:最大流,建模源点到每个食物连一条边,容量为1,每个饮料向汇点连一条边容量为1,然后由于每个牛有容量1,所以把牛进行拆点,然后食物连向牛的入点,牛的出点连向食物,跑一下最大流即可 代码: #include <cstdio> #include <cstring> #include <queue> #in

POJ 3281 Dining(最大流dinic&amp;&amp;SAP)

Description Cows are such finicky eaters. Each cow has a preference for certain foods and drinks, and she will consume no others. Farmer John has cooked fabulous meals for his cows, but he forgot to check his menu against their preferences. Although

POJ 3281 Dining(网络流拆点)

[题目链接] http://poj.org/problem?id=3281 [题目大意] 给出一些食物,一些饮料,每头牛只喜欢一些种类的食物和饮料, 但是每头牛最多只能得到一种饮料和食物,问可以最多满足几头牛的要求 即同时得到喜欢的饮料和食物 [题解] 建立一个源点连接食物,汇点连接饮料,中间连接牛, 为了防止同一头牛占用多个资源,所以我们对牛进行拆点,限流为1. [代码(Isap)] #include <cstdio> #include <cstring> using names

poj 3281 Dining (最大网络流)

题目链接: http://poj.org/problem?id=3281 题目大意: 有n头牛,f种食物,d种饮料,第i头牛喜欢fi种食物和di种饮料,每种食物或者饮料被一头牛选中后,就不能被其他的牛选了,问最多能满足多少头牛的要求? 解题思路: 最大匹配问题,关键在于如何建图,可以虚构出来一个源点,一个汇点,一共需要f+d+2*n+2个点即可,建图为:源点—>食物—>牛—>牛—>饮料—> 汇点.把牛作为点拆开建图是为了让一头牛只对应一种饮料和一种食物,避免出现对应多种饮料或