Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
all-algorithms-python/graphs/dinic.py at Write-for-current-Python · UnixJunkie/all-algorithms-python · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
UnixJunkie
/
all-algorithms-python
Public
forked from
TheAlgorithms/Python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
Write-for-current-Python
Breadcrumbs
all-algorithms-python
/
graphs
/
dinic.py
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
94 lines (80 loc) · 2.98 KB
Write-for-current-Python
Breadcrumbs
all-algorithms-python
/
graphs
/
dinic.py
Copy path
Top
File metadata and controls
Code
Blame
94 lines (80 loc) · 2.98 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
INF
=
float
(
"inf"
)
class
Dinic
:
def
__init__
(
self
,
n
):
self
.
lvl
=
[
0
]
*
n
self
.
ptr
=
[
0
]
*
n
self
.
q
=
[
0
]
*
n
self
.
adj
=
[[]
for
_
in
range
(
n
)]
"""
Here we will add our edges containing with the following parameters:
vertex closest to source, vertex closest to sink and flow capacity
through that edge ...
"""
def
add_edge
(
self
,
a
,
b
,
c
,
rcap
=
0
):
self
.
adj
[
a
].
append
([
b
,
len
(
self
.
adj
[
b
]),
c
,
0
])
self
.
adj
[
b
].
append
([
a
,
len
(
self
.
adj
[
a
])
-
1
,
rcap
,
0
])
# This is a sample depth first search to be used at max_flow
def
depth_first_search
(
self
,
vertex
,
sink
,
flow
):
if
vertex
==
sink
or
not
flow
:
return
flow
for
i
in
range
(
self
.
ptr
[
vertex
],
len
(
self
.
adj
[
vertex
])):
e
=
self
.
adj
[
vertex
][
i
]
if
self
.
lvl
[
e
[
0
]]
==
self
.
lvl
[
vertex
]
+
1
:
p
=
self
.
depth_first_search
(
e
[
0
],
sink
,
min
(
flow
,
e
[
2
]
-
e
[
3
]))
if
p
:
self
.
adj
[
vertex
][
i
][
3
]
+=
p
self
.
adj
[
e
[
0
]][
e
[
1
]][
3
]
-=
p
return
p
self
.
ptr
[
vertex
]
=
self
.
ptr
[
vertex
]
+
1
return
0
# Here we calculate the flow that reaches the sink
def
max_flow
(
self
,
source
,
sink
):
flow
,
self
.
q
[
0
]
=
0
,
source
for
l
in
range
(
31
):
# noqa: E741 l = 30 maybe faster for random data
while
True
:
self
.
lvl
,
self
.
ptr
=
[
0
]
*
len
(
self
.
q
), [
0
]
*
len
(
self
.
q
)
qi
,
qe
,
self
.
lvl
[
source
]
=
0
,
1
,
1
while
qi
<
qe
and
not
self
.
lvl
[
sink
]:
v
=
self
.
q
[
qi
]
qi
+=
1
for
e
in
self
.
adj
[
v
]:
if
not
self
.
lvl
[
e
[
0
]]
and
(
e
[
2
]
-
e
[
3
])
>>
(
30
-
l
):
self
.
q
[
qe
]
=
e
[
0
]
qe
+=
1
self
.
lvl
[
e
[
0
]]
=
self
.
lvl
[
v
]
+
1
p
=
self
.
depth_first_search
(
source
,
sink
,
INF
)
while
p
:
flow
+=
p
p
=
self
.
depth_first_search
(
source
,
sink
,
INF
)
if
not
self
.
lvl
[
sink
]:
break
return
flow
# Example to use
"""
Will be a bipartite graph, than it has the vertices near the source(4)
and the vertices near the sink(4)
"""
# Here we make a graphs with 10 vertex(source and sink includes)
graph
=
Dinic
(
10
)
source
=
0
sink
=
9
"""
Now we add the vertices next to the font in the font with 1 capacity in this edge
(source -> source vertices)
"""
for
vertex
in
range
(
1
,
5
):
graph
.
add_edge
(
source
,
vertex
,
1
)
"""
We will do the same thing for the vertices near the sink, but from vertex to sink
(sink vertices -> sink)
"""
for
vertex
in
range
(
5
,
9
):
graph
.
add_edge
(
vertex
,
sink
,
1
)
"""
Finally we add the verices near the sink to the vertices near the source.
(source vertices -> sink vertices)
"""
for
vertex
in
range
(
1
,
5
):
graph
.
add_edge
(
vertex
,
vertex
+
4
,
1
)
# Now we can know that is the maximum flow(source -> sink)
print
(
graph
.
max_flow
(
source
,
sink
))
You can’t perform that action at this time.