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

hdu1151 Air Raid,DAG图的最小路径覆盖

时间:2014-09-18 11:30:34      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   2014   

点击打开链接

有向无环图的最小路径覆盖 = 顶点数- 最大匹配


#include <queue>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;

const int maxn = 150;
int g[maxn][maxn];
int n, m;
int link[maxn];
bool used[maxn];
bool dfs(int u)
{
    for(int v=1; v<=n; ++v)
        if(g[u][v]&&!used[v]) {
            used[v] = true;
            if( link[v]==-1 || dfs(link[v])) {
                link[v] = u;
                return true;
            }
        }
    return false;
}

int hungary()
{
    int res = 0;
    memset(link, -1, sizeof link );
    for(int i=1; i<=n; ++i) {
        memset(used, 0, sizeof used );
        if(dfs(i)) res++;
    }
    return res;
}
int main()
{
    int u, v, t;
    scanf("%d", &t);
    while(t--) {
        scanf("%d%d", &n, &m);
        memset(g, 0, sizeof g );
        for(int i=1; i<=m; ++i) {
            scanf("%d%d", &u, &v);
            g[u][v] = 1;
        }

        int cnt = hungary();
        printf("%d\n", n-cnt);
    }
    return 0;
}


hdu1151 Air Raid,DAG图的最小路径覆盖

标签:style   blog   http   color   io   os   ar   for   2014   

原文地址:http://blog.csdn.net/yew1eb/article/details/39369011

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