bzoj 4554Tjoi2016&Heoi2016NOIP2016模拟7.12游戏

Posted 无尽的蓝黄

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj 4554Tjoi2016&Heoi2016NOIP2016模拟7.12游戏相关的知识,希望对你有一定的参考价值。

题目

技术分享图片

分析

当没有石头的时候,就用二分图匹配来做。
但现在加入了石头,
所以,求出每行和每列联通快的个数,如果有一块平地,包括在某个行联通块以及某个列联通块中,连边。

//无聊打了网络流,匈牙利也可以
#include <cmath>
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
#include <queue>
const int maxlongint=2147483647;
const int mo=1000000007;
const int N=54;
using namespace std;
int n,m,a[N][N],ans,tot,f[N*N+6][N*N+6],id,v[N*N+6],t;
int b[N][N];
int aug(int x,int y)
{
    if(x==n*m+n) return y;
    v[x]=id;
    for(int i=0;i<=n*m+n;i++)
    {
        if(f[x][i] && v[i]<id)
        {
            int o=aug(i,min(y,f[x][i]));
            if(o)
            {
                f[x][i]-=o;
                f[i][x]+=o;
                return o;
            }
        }
    }
    return 0;
}                           
int main()
{
    scanf("%d%d",&n,&m);
    tot=0;
    for(int i=1;i<=n;i++)
    {
        tot++;
        for(int j=1;j<=m;j++)
        {
            char c;
            c=getchar();
            while(c!='*' && c!='x' && c!='#') c=getchar();
            if(c=='*') a[i][j]=1;
            else
                if(c=='x') a[i][j]=2;
                    else
                        a[i][j]=3;
            if(a[i][j]==3 && a[i][j-1]!=3) tot++;
            else
            {
                f[0][tot]=1;
                b[i][j]=tot;
            }
        }
    }
    for(int i=1;i<=m;i++)
    {
        tot++;
        for(int j=1;j<=n;j++)
        {
            if(a[j][i]==3) tot++;
            else
            {
                if(a[j][i]!=2) f[b[j][i]][tot]=1;
                f[tot][n*m+n]=1;
            }
        }
    }
    t=1;
    while(t)
    {
        id++;
        t=aug(0,maxlongint);
        ans+=t;     
    }
    printf("%d",ans);
}

以上是关于bzoj 4554Tjoi2016&Heoi2016NOIP2016模拟7.12游戏的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ4554: [Tjoi2016&Heoi2016]游戏

BZOJ4554[Tjoi2016&Heoi2016]游戏 二分图最大匹配

BZOJ4554: [Tjoi2016&Heoi2016]游戏

[bzoj4554] [Tjoi2016&Heoi2016]游戏

bzoj4554 [Tjoi2016&Heoi2016]游戏

bzoj 4554Tjoi2016&Heoi2016NOIP2016模拟7.12游戏