BZOJ1143: [CTSC2008]祭祀river

【传送门:BZOJ1143


简要题意:

  给出一个有向无环图,选出最多的点,使得这些点不能互相到达


题解:

  最长反链=最小链覆盖=最大独立集,然后二分图匹配

  如果x能到达y,则将x连向y的另一个集合


参考代码:

#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<cstdlib>
using namespace std;
int match[110],chw[110];
bool map[110][110];
int n;
bool findmuniu(int x,int t)
{
    for(int y=1;y<=n;y++)
    {
        if(chw[y]!=t&&map[x][y]==true)
        {
            chw[y]=t;
            if(match[y]==0||findmuniu(match[y],t)==true)
            {
                match[y]=x;
                return true;
            }
        }
    }
    return false;
}
int main()
{
    int m;
    scanf("%d%d",&n,&m);
    memset(map,false,sizeof(map));
    for(int i=1;i<=m;i++)
    {
        int x,y;
        scanf("%d%d",&x,&y);
        map[x][y]=true;
    }
    for(int i=1;i<=n;i++)
    {
        for(int j=1;j<=n;j++)
        {
            if(i!=j)
            {
                for(int k=1;k<=n;k++)
                {
                    if(i!=k&&k!=j)
                    {
                        if(map[i][j]==true&&map[j][k]==true) map[i][k]=true;
                    }
                }
            }
        }
    }
    memset(chw,0,sizeof(chw));
    memset(match,0,sizeof(match));
    int sum=n;
    for(int i=1;i<=n;i++) if(findmuniu(i,i)==true) sum--;
    printf("%d\n",sum);
    return 0;
}

 

转载于:https://www.cnblogs.com/Never-mind/p/8634495.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值