Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

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

Lines changed: 2 additions & 1 deletion
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)

AltStyle によって変換されたページ (->オリジナル) /