博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 3605 Escape (二分图多重匹配)
阅读量:2233 次
发布时间:2019-05-09

本文共 1562 字,大约阅读时间需要 5 分钟。

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 4298    Accepted Submission(s): 1129


Problem Description
2012 If this is the end of the world how to do?

I do not know how. But now scientists have found that some stars, who can live, but some people do not fit to live some of the planet. Now scientists want your help, is to determine what all of people can live in these planets.

 

Input
More set of test data, the beginning of each data is n (1 <= n <= 100000), m (1 <= m <= 10) n indicate there n people on the earth, m representatives m planet, planet and people labels are from 0. Here are n lines, each line represents a suitable living conditions of people, each row has m digits, the ith digits is 1, said that a person is fit to live in the ith-planet, or is 0 for this person is not suitable for living in the ith planet.
The last line has m digits, the ith digit ai indicates the ith planet can contain ai people most..
0 <= ai <= 100000
 

Output
Determine whether all people can live up to these stars
If you can output YES, otherwise output NO.
 

Sample Input
 
1 1 1 1 2 2 1 0 1 0 1 1
 

Sample Output
 
YES NO
 

Source

多重匹配即 X集合上的点相应 Y集合上多个点而 Y集合上的点相应 X中的一个点.

能够用一个二维数组记录匹配的对象link[M][N]。再用一个数组cnt[M]记录该点已经匹配几个点了,是否超出最大匹配,若超出最大匹配。则在该点已经匹配的点中寻找增广路径。

若某个点不能匹配成功,则查找失败。。

#include"stdio.h"#include"string.h"#define N 100005#define M 15bool g[N][M],vis[M];          //存边的权值0、1,记录是否訪问过int lim[M],cnt[M],link[M][N];  int n,m;int find(int k){    int i,j;    for(i=0;i

转载于:https://www.cnblogs.com/ljbguanli/p/6897380.html

你可能感兴趣的文章
检查Linux服务器性能
查看>>
Java 8新的时间日期库
查看>>
Chrome开发者工具
查看>>
【LEETCODE】102-Binary Tree Level Order Traversal
查看>>
【LEETCODE】106-Construct Binary Tree from Inorder and Postorder Traversal
查看>>
【LEETCODE】202-Happy Number
查看>>
和机器学习和计算机视觉相关的数学
查看>>
十个值得一试的开源深度学习框架
查看>>
【LEETCODE】240-Search a 2D Matrix II
查看>>
【LEETCODE】53-Maximum Subarray
查看>>
【LEETCODE】215-Kth Largest Element in an Array
查看>>
【LEETCODE】241-Different Ways to Add Parentheses
查看>>
【LEETCODE】312-Burst Balloons
查看>>
【LEETCODE】232-Implement Queue using Stacks
查看>>
【LEETCODE】225-Implement Stack using Queues
查看>>
【LEETCODE】155-Min Stack
查看>>
【LEETCODE】20-Valid Parentheses
查看>>
【LEETCODE】290-Word Pattern
查看>>
【LEETCODE】36-Valid Sudoku
查看>>
【LEETCODE】205-Isomorphic Strings
查看>>