bzoj4554: [Tjoi2016&Heoi2016]游戏(二分图匹配)

4554: [Tjoi2016&Heoi2016]游戏

题目:传送门

题解:

   一道很牛逼的匈牙利。。和之前模拟赛的一道题有点相似(不过这题不用完美匹配)

   我们可以把连续的行和列全部编号(如果之间没有#就归为同一编号)

   很容易就可以证明,编号后的行和列只能匹配一次,跑一下找母牛就ok(数组开小的我没有一A很难受)

   强烈吐槽:数据开头和结尾的字符串不用输入(cnmmmmmmmm!!!!)

   但是做完这题还是很兴奋的,哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈终于超过苏大佬了哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈哈

代码:

 #include<cstdio>
#include<cstring>
#include<cstdlib>
#include<cmath>
#include<algorithm>
using namespace std;
struct node
{
int x,y,next;
}a[];int len,last[];
void ins(int x,int y)
{
len++;
a[len].x=x;a[len].y=y;
a[len].next=last[x];last[x]=len;
}
int match[],chw[],t;
int find_muniu(int x)
{
for(int k=last[x];k;k=a[k].next)
{
int y=a[k].y;
if(chw[y]!=t)
{
chw[y]=t;
if(match[y]== || find_muniu(match[y]))
{
match[y]=x;
return true;
}
}
}
return false;
}
char st[][],s[];
int belong1[][],belong2[][];
int n,m;
int main()
{
freopen("ans.in","r",stdin);
freopen("ans.out","w",stdout);
//scanf("%s",s+1);
scanf("%d%d",&n,&m);
for(int i=;i<=n;i++)scanf("%s",st[i]+);
//scanf("%s",s+1);
int H=,L=;
for(int i=;i<=n;i++)
{
H++;int k=;
while(st[i][k]!='*' && k<=m)k++;
for(int j=k;j<=m;j++)
{
if(st[i][j]=='#')H++;
if(st[i][j]=='*')belong1[i][j]=H;
}
}
L=H;
for(int j=;j<=m;j++)
{
L++;int k=;
while(st[k][j]!='*' && k<=n)k++;
for(int i=k;i<=n;i++)
{
if(st[i][j]=='#')L++;
if(st[i][j]=='*')belong2[i][j]=L;
}
}
for(int i=;i<=n;i++)
for(int j=;j<=m;j++)
if(st[i][j]=='*')
ins(belong1[i][j],belong2[i][j]);
memset(chw,,sizeof(chw));memset(match,,sizeof(match));
int ans=;
for(int i=;i<=H;i++)
{
t=i;if(find_muniu(i))ans++;
}
printf("%d\n",ans);
return ;
}
上一篇:install OwnCloud9 on CentOS7


下一篇:bzoj4554: [Tjoi2016&Heoi2016]游戏 二分图匹配