If you want to maximize a function f(x), you can do this by minimizing -f(x). Naively it seems like an analogous trick could convert a max cut problem into a min cut problem, however this is apparently not possible because min cut is easy while max cut is hard. What is the clearest explanation of how this naive intuition goes wrong?
Remember to vote up questions/answers you find interesting or helpful (requires 15 reputation points)
|
0
|
|
|
|
|
3
|
The ease of the minimum cut selection depends on the edge capacities being non-negative. If you negate all the capacities, that assumption goes out the window. And there is no positive edge function you can add to reinstate it. |
||
|
|
You can accept an answer to one of your own questions by clicking the check mark next to it. This awards 15 reputation points to the person who answered and 2 reputation points to you.
|
2
|
If you try to take the complement of the edge set to translate a max cut problem, you end up not minimizing cuts, but cuts minus a correction factor that depends on the size of the subsets in the partition (namely, it is the product of the sizes). This changes the nature of the problem considerably - if you have a dense graph, min cut will tend to separate a small chunk, while the corrected version will not. Edit: A previous version complained about a difference in input type, hence David's comment. |
|||
|
|
1
|
see also: shortest path (Dijkstra/bfs) and longest path (NP-hard) in a graph |
|||
|

