洛谷P1343地震逃生
最大流问题,FF算法:
链式前向星建边,异或来求反向边。
const int N=2e3+86;
struct edge{int to,nxt,w;}e[N*2];int hd[N],tot=1;
void add(int u,int v,int w){
e[++tot]=(edge){v,hd[u],w}; hd[u]=tot;
}
int n,m,x;
bitset<286> vis;
int dfs(int p,int flow){
if(p
more...