题目大意
给你一个n*m网格图,有起点荷叶和终点荷叶,有中转荷叶,其他的格子没东西,一个荷叶可以跳到同一行或者列的另一个荷叶。问最多删掉几个中转荷叶能让起点终点不连通。如果不行输出-1.
n,m<=100
题解
中出了一个叛徒题目???
裸的最小割???
考虑到是删点我们直接把一个点拆成两个点,中间连一条流量为1的单向边就好了
#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<cmath>
#define fo(i,a,b) for(i=a;i<=b;i++)
#define min(x,y) ((x)<(y)?(x):(y))
using namespace std;
const int maxn=3e6+5;
int fi[maxn],ne[maxn*2],dui[maxn*2],dui1[maxn*2],qc[maxn];
int a[105][105],de[20005],h[maxn];
char s[105];
int i,j,k,l,m,n,x,y,now,p,be,ed,ans;
bool bq;
void add(int x,int y,int z){
if (fi[x]==0) fi[x]=++now; else ne[qc[x]]=++now;
dui[now]=y; dui1[now]=z; qc[x]=now;
}
bool bfs(){
memset(de,255,sizeof(de));
de[be]=0;
h[1]=be; i=1; j=0;
while (i>j){
x=h[++j];
for(int k=fi[x];k;k=ne[k]){
if (de[dui[k]]!=-1 || dui1[k]==0) continue;
de[dui[k]]=de[x]+1;
h[++i]=dui[k];
}
}
if (de[ed]==-1) return false; else return true;
}
int dinic(int x,int w){
int i=fi[x],now=0,p;
if (x==ed) return w;
for(;i;i=ne[i]){
if (dui1[i]==0 || de[dui[i]]!=de[x]+1) continue;
p=dinic(dui[i],min(w-now,dui1[i]));
if (p){
dui1[i]-=p; dui1[i xor 1]+=p; now+=p;
}
}
return now;
}
int main(){
// freopen("074f.in","r",stdin);
scanf("%d%d",&n,&m);
fo(i,1,n){
scanf("%s",&s);
fo(j,0,m-1){
if (s[j]=='.') continue;
a[i][j+1]=++p;
if (s[j]=='S') be=p;
if (s[j]=='T') ed=p;
}
}
now=1;
fo(i,1,n)
fo(j,1,m) if (a[i][j]>0 && a[i][j]!=ed){
fo(k,1,m) if (a[i][k]>0 && a[i][k]!=a[i][j] && a[i][k]!=be){
add(a[i][j]+p,a[i][k],1234567);
if (a[i][j]==be && a[i][k]==ed){
printf("-1\n"); return 0;
}
}
fo(k,1,n) if (a[k][j]>0 && a[k][j]!=a[i][j] && a[k][j]!=be){
add(a[i][j]+p,a[k][j],1234567);
if (a[i][j]==be && a[k][j]==ed){
printf("-1\n"); return 0;
}
}
}
fo(i,1,p){
if (i==be || i==ed) add(i,i+p,1234567); else add(i,i+p,1);
add(i+p,i,0);
}
ed=ed+p;
while (bfs())
ans=ans+dinic(be,1234567);
printf("%d\n",ans);
return 0;
}