Escape(二分图多重匹配)
发布日期:2021-11-02 09:49:07 浏览次数:1 分类:技术文章

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

Problem

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

题意

2012如果这是世界末日怎么办?我不知道怎么。但是现在科学家发现,有些恒星可以生存,但有些人不适合生活在某些星球上。现在,科学家想要您的帮助,就是确定所有人都可以住在这些星球上。

n表示地球上有n个人,m代表m行星,行星和人标签是从0开始的。然后n行,每行代表一个人的合适生活条件,每行有m个数字,第i个数字为1,表示一个人适合生活在第i行星中,或者对于0表示这个人不适合住在第i个星球。
最后一行包含m个数字,第i个数字ai表示第i个星球最多可以容纳ai人。

代码
#include
#include
#include
#include
using namespace std;const int maxn = 100010, maxm = 12;bool mp[maxn][maxm], vis[maxm];int link[maxm][maxn], limit[maxm], cnt[maxm];int m, n;bool find(int k) {
for (int i = 0; i < m; i++) {
if (mp[k][i] && !vis[i]) {
vis[i] = true; if (cnt[i] < limit[i]) {
link[i][cnt[i]++] = k; return true; } for (int j = 0; j < limit[i]; j++) {
if (find(link[i][j])) {
link[i][j] = k; return true; } } } } return false;}int main() {
//解除的是C++运行库层面的对数据传输的绑定,取消输入输出时数据加入缓存,以提高效率 ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); while (cin >> n >> m) {
if (n == -1) {
break; } memset(link, 0, sizeof(link)); memset(cnt, 0, sizeof(cnt)); for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
cin >> mp[i][j]; } } for (int i = 0; i < m; i++) {
cin >> limit[i]; } int i; for (i = 0; i < n; i++) {
memset(vis, 0, sizeof(vis)); if (!find(i)) {
break; } } if (i == n) {
cout << "YES\n"; } else {
cout << "NO\n"; } } return 0;}

转载地址:https://blog.csdn.net/weixin_43820352/article/details/114276710 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:关于线段树基础
下一篇:EOJ Monthly 2021.2 Sponsored by TuSimple A. 昔我往矣(最近公共祖先)

发表评论

最新留言

留言是一种美德,欢迎回访!
[***.207.175.100]2024年04月01日 02时33分46秒