-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path15892.cpp
105 lines (88 loc) · 1.78 KB
/
15892.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#include <string>
#include <stdio.h>
#include <math.h>
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <stack>
#include <climits>
#include <set>
#define p(a, b) make_pair(a, b)
#define SWAP(a, b, type) do { \
type temp; \
temp = a; \
a = b; \
b = temp; \
} while (0)
#define INF 1000000000
#define endl '\n'
#define ll long long
using namespace std;
vector<int> v[301];
int cap[301][301];
int flow[301][301];
int path[301];
int n,m;
int get_flow(int S,int E){
int f = INT_MAX;
int cur = E;
while(cur!=S){
f = min(f,cap[path[cur]][cur]-flow[path[cur]][cur]);
cur = path[cur];
}
cur = E;
while(cur!=S){
flow[path[cur]][cur]+=f;
flow[cur][path[cur]]-=f;
cur = path[cur];
}
return f;
}
int edmonds_karp(int S,int E){
fill(path,path+301,-1);
queue<int> q;
q.push(S);
while(!q.empty()){
int cur = q.front(); q.pop();
for(int i=0;i<v[cur].size();i++){
int next = v[cur][i];
if(path[next]<0 && cap[cur][next] - flow[cur][next]>0){
path[next]=cur;
q.push(next);
if(next == E) return get_flow(S,E);
}
}
}
return 0;
}
void input() {
cin>>n>>m;
int a,b,c;
for(int i=0;i<m;i++){
cin>>a>>b>>c;
v[a].push_back(b);
v[b].push_back(a);
cap[a][b] += c;
cap[b][a] += c;
}
}
void init() {
}
void solution() {
int max_flow=0;
while(1){
int tmp = edmonds_karp(1,n);
if(tmp==0) break;
max_flow+=tmp;
}
cout<<max_flow;
}
int main()
{
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
input();
solution();
return 0;
}