max-flow Questions
1
Solved
so I faced this question and I hope that someone can help me in it.
Given an undirected graph G = (V, E), 2 vertices x,y and an edge e = (v,u).
Suggest an algorithm to find if there's a simple path...
Po asked 3/1, 2022 at 21:21
2
There can be multiple min-cuts in a network. E.g:
has four min-cuts and Ford-Fulkerson finds the one "nearer" to s (the source). Can we say the same for all networks? That is, Ford-Fulkerson fin...
Reliable asked 2/4, 2015 at 16:49
5
Solved
Is there a reliable and well-documented Python library with a fast implementation of an algorithm that finds maximum flows and minimum cuts in directed graphs?
pygraph.algorithms.minmax.maximum_fl...
Explore asked 24/10, 2010 at 16:3
1
I can't understand how to find circulation flow in the network with lower bounds(not demands). I found next documents with problem description and solving strategies:
https://www.cs.cmu.edu/~ckin...
Stanchion asked 22/11, 2016 at 22:9
7
I need to find the minimum cut on a graph. I've been reading about flow networks, but all I can find are maximum flow algorithms such as Ford-Fulkerson, push-relabel, etc. Given the max flow-min cu...
Debauchery asked 19/12, 2010 at 12:44
2
Solved
A question to the following exercise:
Let N = (V,E,c,s,t) be a flow network such that (V,E) is acyclic, and let m = |E|. Describe a polynomial-
time algorithm that checks whether N has a unique...
1
Solved
I need to calculate the min-cost-max-flow for a flow network using the
boost::successive_shortest_path_nonnegative_weights()
function available in the BGL (v 1_60_0).
As specified in the documen...
1
I'm working in medical image segmentation and I want to combine fuzzy connectedness algorithm with the graph cut, the idea is to segment the image with fuzzy connectedness the background and the fo...
Verdieverdigris asked 19/3, 2016 at 7:21
0
I was trying to extract the hair from a given image as described in the research paper, using the concept of energy minimisation, The energy function is dependent on both Prior probability and YCrC...
Nitride asked 24/7, 2015 at 2:21
2
Given a directed weighted graph, how to find the Maximum Flow ( or Minimum Edge Cut ) between all pairs of vertices. The naive approach is simply to call a Max Flow algorithm like Dinic's, whose co...
Oreopithecus asked 21/12, 2012 at 12:59
1
Problem: http://www.spoj.com/problems/DIVREL
In question, we just need to find the maximum number of elements which are not multiples (a divisible by b form) from a set of elements given. If we ju...
Berlinda asked 25/5, 2014 at 18:23
1
Solved
I was reading http://www.geeksforgeeks.org/maximum-bipartite-matching/ and http://en.wikipedia.org/wiki/Ford%E2%80%93Fulkerson_algorithm and am having trouble understanding. It seems the example is...
Overrefinement asked 30/3, 2014 at 17:13
1
Solved
I've tried to solve a question about the maximum-flow problem. I have one source and two sinks. I need to find a maximum flow in this network. This part is general max-flow. However, both targets h...
Calandra asked 21/1, 2014 at 20:37
1
Solved
opencv has an implementation of max-flow algorithm (class GCGRAPH in file gcgraph.hpp). It's available here.
Does anyone know which particular max-flow algorithm is implemented by this class?
Fungi asked 20/6, 2013 at 19:48
1
Suppose that I've run the Ford-Fulkerson algorithm on a graph G = (V,E) and the result is a max-flow fmax, which is associated to a min-cut Xmin. I'm interested in increasing the flow as much as po...
Monolithic asked 29/5, 2013 at 1:11
3
Solved
I'm looking for fast algorithm to compute maximum flow in dynamic graphs (adding/deleting node with related edges to graph). i.e we have maximum flow in G now new node added/deleted with related ed...
2
Solved
I have to write a program which requires to maintain some data in a directed flow graph. I need to compute the maximum-flow at runtime.
I know that there exist several libraries for handling graph...
1
© 2022 - 2024 — McMap. All rights reserved.