Problem E
Minimum Cut
Given a directed weighted graph and two vertices
Input
The first line of input contains four non-negative integers,
Output
Output should begin with a line containing an integer
You may assume that there is a cut such that the total
weight of edges from
Sample Input 1 | Sample Output 1 |
---|---|
4 5 0 3 0 1 10 1 2 1 1 3 1 0 2 1 2 3 10 |
2 1 0 |
Sample Input 2 | Sample Output 2 |
---|---|
2 1 0 1 0 1 100000 |
1 0 |
Sample Input 3 | Sample Output 3 |
---|---|
2 1 1 0 0 1 100000 |
1 1 |