zoukankan      html  css  js  c++  java
  • FZU

    Description

    Are you interested in pets? There is a very famous pets shop in the center of the ACM city. There are totally m pets in the shop, numbered from 1 to m. One day, there are n customers in the shop, which are numbered from 1 to n. In order to sell pets to as more customers as possible, each customer is just allowed to buy at most one pet. Now, your task is to help the manager to sell as more pets as possible. Every customer would not buy the pets he/she is not interested in it, and every customer would like to buy one pet that he/she is interested in if possible.

    Input

    There is a single integer T in the first line of the test data indicating that there are T(T≤100) test cases. In the first line of each test case, there are three numbers n, m(0≤n,m≤100) and e(0≤e≤n*m). Here, n and m represent the number of customers and the number of pets respectively.

    In the following e lines of each test case, there are two integers x(1≤x≤n), y(1≤y≤m) indicating that customer x is not interested in pet y, such that x would not buy y.

    Output

    For each test case, print a line containing the test case number (beginning with 1) and the maximum number of pets that can be sold out.

    Sample Input

    1
    2 2 2
    1 2
    2 1
    

    Sample Output

    Case 1: 2
    

    Source

    2011年全国大学生程序设计邀请赛(福州)
    题意:有n个人分别相应不喜欢某个宠物,问最多能卖出去几仅仅
    思路:简单的二分图匹配。匈牙利算法模板
    #include <iostream>
    #include <cstring>
    #include <algorithm>
    #include <cstdio>
    using namespace std;
    const int MAXN = 110;
    
    int g[MAXN][MAXN], vis[MAXN];
    int lined[MAXN];
    int n, m, e;
    
    int dfs(int u) {
    	for (int v = 1; v <= m; v++) {
    		if (g[u][v] && !vis[v]) {
    			vis[v] = 1;
    			if (lined[v] == -1 || dfs(lined[v])) {
    				lined[v] = u;
    				return 1;
    			}
    		}
    	}
    	return 0;
    }
    
    int main() {
    	int t, cas = 1;;
    	scanf("%d", &t);
    	while (t--) {
    		memset(g, 1, sizeof(g));
    		memset(lined, -1, sizeof(lined));
    		scanf("%d%d%d", &n, &m, &e);
    		for (int i = 0; i < e; i++) {
    			int a, b;
    			scanf("%d%d", &a, &b);
    			g[a][b] = 0;
    		}
    		int ans = 0;
    		for (int i = 1; i <= n; i++) {
    			memset(vis, 0, sizeof(vis));
    			if (dfs(i))
    				ans++;
    		}
    		printf("Case %d: ", cas++);
    		printf("%d
    ", ans);
    	}
    	return 0;
    }




  • 相关阅读:
    JavaScript+IndexedDB实现留言板:客户端存储数据
    怎么限制Google自动调整字体大小
    《互联网时代》告诉我的互联网简史(二)
    《互联网时代》告诉我的互联网简史(一)
    CSS换行:word-wrap、word-break和text-wrap区别
    php中的字符串和正则表达式
    php数组使用小结
    问题:关于一个贴友的js留言板的实现
    问题:关于坛友的一个定时重复显示和隐藏div的实现
    使用union 外加count
  • 原文地址:https://www.cnblogs.com/gcczhongduan/p/5351791.html
Copyright © 2011-2022 走看看