From 8bdf23e814bef45c7f601ddc5cf0f5e0a4ee8648 Mon Sep 17 00:00:00 2001 From: lacy108 Date: Sat, 13 Oct 2018 16:44:58 +0800 Subject: [PATCH] Update Dinic.cpp --- code/Flow/Dinic.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/Flow/Dinic.cpp b/code/Flow/Dinic.cpp index 20cf989..5a6651a 100755 --- a/code/Flow/Dinic.cpp +++ b/code/Flow/Dinic.cpp @@ -54,4 +54,8 @@ int max_flow(int s,int t){ while((f=dfs(s,t,1e9))>0) flow+=f; } -} \ No newline at end of file +} +int main(){ + for(int i=0;i