码迷,mamicode.com
首页 > 其他好文 > 详细

LightOJ 1403 - Air Raid【二分匹配】

时间:2015-08-27 07:15:08      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:lightoj   air   raid   

题目链接:http://www.lightoj.com/volume_showproblem.php?problem=1403

代码:

#include <iostream>  
#include <algorithm>  
#include <set>  
#include <map>  
#include <string.h>  
#include <queue>  
#include <sstream>  
#include <stdio.h>  
#include <math.h>  
#include <stdlib.h>  

using namespace std;

int n, m;
int p[1010][1010];
int book[1010];
int match[1010];
vector<int> g[1010];

int dfs(int u)
{
    int i;
    for (i = 0; i < g[u].size(); i++)
    {
        int v = g[u][i];
        if (book[v] == 0 && p[u][v] == 1)
        {
            book[v] = 1;
            if (match[v] == 0 || dfs(match[v]))
            {
                match[v] = u;
                return 1;
            }
        }
    }
    return 0;
}

int main()
{
    int t;
    int cases = 1;
    scanf("%d", &t);
    while (t--)
    {
        scanf("%d%d", &n, &m);
        for (int i = 0; i <= n; i++) g[i].clear();

        int ans = 0;
        memset(match, 0, sizeof(match));
        memset(p, 0, sizeof(p));

        int a, b;
        while (m--)
        {
            scanf("%d%d", &a, &b);
            p[a][b] = 1;
            g[a].push_back(b);
        }

        for (int i = 1; i <= n; i++)
        {
            memset(book, 0, sizeof(book));
            if (dfs(i))
                ans++;
        }
        printf("Case %d: %d\n", cases++, n - ans);
    }
    return 0;
}

版权声明:转载请注明出处。

LightOJ 1403 - Air Raid【二分匹配】

标签:lightoj   air   raid   

原文地址:http://blog.csdn.net/u014427196/article/details/48020945

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!