Skip to content

Commit f479caa

Browse files
Create max_flow_network_dinic_algorithm.cpp
1 parent d3043f2 commit f479caa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/max_flow_network_dinic_algorithm.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11

22
#define NN 1505
33

4-
int cap[NN][NN], deg[NN];
4+
int cap[NN][NN];
55
vector<vector<int> > adj;
6+
67
int q[NN], prev[NN];
78
int dinic( int n, int s, int t )
89
{

0 commit comments

Comments
 (0)