实现功能:同Dinic网络最大流 1 这个新的想法源于Dinic费用流算法... 在费用流算法里面,每次处理一条最短路,是通过spfa的过程中就记录下来,然后顺藤摸瓜处理一路 于是在这个里面我的最大流也采用这种模式,这样子有效避免的递归,防止了爆栈么么哒 type point=^node; node=record g,w:longint; next,anti:point; end; var i,j,k,l,m,n,s,t,flow:longint; a,e:..] of point; c,d:.…