又是贴板子的一天
贴贴
#include<bits/stdc++.h>
using namespace std;
const int maxn=1e3+7;
const int inf=0x3f3f3f3f;
int cnt=0,n,m;
int s,t;
int head[maxn];
int dep[maxn];
struct edge{
int to,cost,next;
}e[maxn*20];
void add(int u,int v,int w){
e[cnt].to=v;
e[cnt].cost=w;
e[cnt].next=head[u];
head[u]=cnt++;
}
bool bfs(){
queue<int>Q;
memset(dep,0,sizeof(dep));
dep[s]=1;
Q.push(s);
while(!Q.empty()){
int u=Q.front();
Q.pop();
for(int i=head[u];~i;i=e[i].next){
int v=e[i].to,f=e[i].cost;
if(!dep[v]&&f){
dep[v]=dep[u]+1;
Q.push(v);
}
}
}
return dep[t]!=0;
}
int dfs(int u,int flow){
if(u==t)return flow;
for(int i=head[u];~i;i=e[i].next){
int v=e[i].to;
int f=e[i].cost;
if(dep[v]==dep[u]+1&&f){
int df=dfs(v,min(f,flow));
if(df){
e[i].cost-=df;
e[i^1].cost+=df;
return df;
}
}
}
return 0;
}
void dinic(){
int ans=0;
while(bfs()){
int delta;
do{
delta=dfs(s,inf);
ans+=delta;
}while(delta);
}
cout<<ans;
return ;
}
int main(){
memset(head,-1,sizeof(head));
cin>>n>>m>>s>>t;
for(int i=0,u,v,w;i<n;i++){
cin>>u>>v>>w;
add(u,v,w);
add(v,u,0);
}
dinic();
return 0;
}
掌握了再来补题