bzoj1305: [CQOI2009]dance跳舞:http://www.lydsy.com/JudgeOnline/problem.php?id=1305
最大流
二分舞曲数
跑一边最大流如果流出来的是满流量的话就是答案
建边
把每个人都拆成两个点 即喜欢 和 不喜欢 的
然后自己和自己连一条边
源点连到女孩喜欢的
女孩喜欢的连到男孩喜欢的(数据保证没有单项喜欢)
女孩讨厌的连到男孩讨厌的
男孩喜欢的连到汇点
因为只能一对都最多只能跳一首容量都为1
注意连边的顺序
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
struct node
{
int x,y,c,next,other;
}a[11000];
int last[11000],len;
int dep[11000],list[11000];
bool map[110][110];
int st,ed;
void build(int x,int y,int c)
{
len++;int k1=len;
a[len].x=x;a[len].y=y;a[len].c=c;a[len].next=last[x];last[x]=len;
len++;int k2=len;
a[len].x=y;a[len].y=x;a[len].c=0;a[len].next=last[y];last[y]=len;
a[k1].other=k2;a[k2].other=k1;
}
bool bfs()
{
memset(dep,0,sizeof(dep));
dep[st]=1;list[1]=st;
int head=1,tail=1;
while (head<=tail)
{
int x=list[head];
for (int k=last[x];k;k=a[k].next)
{
int y=a[k].y;
if (dep[y]==0&&a[k].c>0)
{
dep[y]=dep[x]+1;
list[++tail]=y;
}
}
head++;
}
if (dep[ed]==0) return false;
else return true;
}
int dfs(int x,int flow)
{
int tot=0,sum;
if (x==ed) return flow;
for (int k=last[x];k;k=a[k].next)
{
int y=a[k].y;
if (dep[y]==dep[x]+1&&a[k].c>0&&tot<flow)
{
sum=dfs(y,min(flow-tot,a[k].c));
tot+=sum;
a[k].c-=sum;a[a[k].other].c+=sum;
}
}
if (tot==0) dep[x]=0;
return tot;
}
int main()
{
// girlhate-boyhate-boylike
// st-girllike{ }-ed
// boylike
char ch[55];
int n,k,ans=0;
memset(map,0,sizeof(map));
scanf("%d%d",&n,&k);
for (int i=1;i<=n;i++)
{
scanf("%s",ch+1);
for (int j=1;j<=n;j++)
{
if (ch[j]=='Y') map[i][j]=1;
else map[i][j]=0;
}
}
st=4*n+1;ed=4*n+2;
int l=0,r=50,mid;
while (l<r)
{
mid=(l+r)/2;
len=0;memset(last,0,sizeof(last));
for (int i=1;i<=n;i++) {build(st,i,mid);build(n+i,ed,mid);}
for (int i=1;i<=n;i++)
{
build(i,2*n+i,k);
build(3*n+i,i+n,k);
for (int j=1;j<=n;j++)
{
if (map[i][j]) build(i,j+n,1);
else build(2*n+i,3*n+j,1);
}
}
//注意建边顺序 dfs时是从后往前询问的
int tot=0;
while(bfs())
{
int sum=dfs(st,999999999);
tot+=sum;
if (sum==0) break;
}
if (tot>=n*mid) {ans=mid;l=mid+1;}
else r=mid;
}
printf("%d\n",ans);
return 0;
}