POJ 1274-The Perfect Stall(二分图匹配/最大流问题)

r囧r小猫 2022-09-25 04:22 216阅读 0赞

The Perfect Stall














Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 23108   Accepted: 10297

Description

Farmer John completed his new barn just last week, complete with all the latest milking technology. Unfortunately, due to engineering problems, all the stalls in the new barn are different. For the first week, Farmer John randomly assigned cows to stalls, but it quickly became clear that any given cow was only willing to produce milk in certain stalls. For the last week, Farmer John has been collecting data on which cows are willing to produce milk in which stalls. A stall may be only assigned to one cow, and, of course, a cow may be only assigned to one stall.
Given the preferences of the cows, compute the maximum number of milk-producing assignments of cows to stalls that is possible.

Input

The input includes several cases. For each case, the first line contains two integers, N (0 <= N <= 200) and M (0 <= M <= 200). N is the number of cows that Farmer John has and M is the number of stalls in the new barn. Each of the following N lines corresponds to a single cow. The first integer (Si) on the line is the number of stalls that the cow is willing to produce milk in (0 <= Si <= M). The subsequent Si integers on that line are the stalls in which that cow is willing to produce milk. The stall numbers will be integers in the range (1..M), and no stall will be listed twice for a given cow.

Output

For each case, output a single line with a single integer, the maximum number of milk-producing stall assignments that can be made.

Sample Input

  1. 5 5
  2. 2 2 5
  3. 3 2 3 4
  4. 2 1 5
  5. 3 1 2 5
  6. 1 2

Sample Output

  1. 4

Source

USACO 40

题目意思:

农民有N个奶牛,M个谷仓,每头牛只愿意在指定的谷仓内产奶。

下面N行,每行的第一个数S表示对应这头牛愿意去的谷仓总数,之后的S个数是各个谷仓的编号。

解题思路:

看成有向图,二分图匹配问题,奶牛和谷仓总数就是图中的顶点总数。

转换成最大流问题时,增加源点和汇点。

  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <cstring>
  4. #include <vector>
  5. #define MAXN 5000
  6. using namespace std;
  7. int V;//顶点数
  8. int R[MAXN],C[MAXN];
  9. vector<int>G[MAXN];//图的邻接表表示
  10. int match[MAXN];//所匹配的顶点
  11. bool used[MAXN];//DFS访问标记
  12. void add_edge(int u,int v)//向图中增加一条连接u和v的边
  13. {
  14. G[u].push_back(v);
  15. G[v].push_back(u);
  16. }
  17. bool dfs(int v)//dfs寻找增广路
  18. {
  19. used[v]=true;
  20. for(int i=0; i<G[v].size(); ++i)
  21. {
  22. int u=G[v][i],w=match[u];
  23. if(w<0||!used[w]&&dfs(w))
  24. {
  25. match[v]=u;
  26. match[u]=v;
  27. return true;
  28. }
  29. }
  30. return false;
  31. }
  32. int bipartite_matching()//二分图最大匹配
  33. {
  34. int res=0;
  35. memset(match,-1,sizeof(match));
  36. for(int v=0; v<V; ++v)
  37. if(match[v]<0)
  38. {
  39. memset(used,0,sizeof(used));
  40. if(dfs(v)) ++res;
  41. }
  42. return res;
  43. }
  44. int main()
  45. {
  46. ios::sync_with_stdio(false);
  47. cin.tie(0);
  48. int N,M;
  49. while(cin>>N>>M)
  50. {
  51. V=N+M;
  52. for(int i=0; i<V; ++i)
  53. G[i].clear();
  54. for(int i=0; i<N; ++i)
  55. {
  56. int S;
  57. cin>>S;
  58. for (int j=0; j<S; ++j)
  59. {
  60. int u;
  61. cin>>u;
  62. u=N+u-1;
  63. add_edge(i,u);
  64. }
  65. }
  66. cout<<bipartite_matching()<<endl;
  67. }
  68. return 0;
  69. }
  70. /**
  71. 5 5
  72. 2 2 5
  73. 3 2 3 4
  74. 2 1 5
  75. 3 1 2 5
  76. 1 2
  77. **/

发表评论

表情:
评论列表 (有 0 条评论,216人围观)

还没有评论,来说两句吧...

相关阅读

    相关 [二分]匹配

    二分图的定义,以及判断图是否为二分图都很简单了。 现在要说二分图的最大匹配。 首先是定义吧,完美匹配就是一一对应,而最大匹配则是最大可以匹配的条数 完美匹配一定是最大匹配