Hide

Problem C
Minimum Cost Maximum Flow

Input

The first line of input contains a line contains a line with four non-negative integers, 2n250, 0m5000, 0sn1 and 0tn1, separated by single spaces, where n is the numbers of nodes in the graph, m is the number of edges, s is the source and t is the sink (st). Nodes are numbered from 0 to n1. Then follow m lines, each line consisting of four (space-separated) integers u, v, c and w indicating that there is an edge from u to v in the graph with capacity 1c10000 and cost 1w1000.

Output

Output a single line containing two integers; the size F of a maximum flow from node s to node t, and the cost of a mimimum cost flow of size F. You may assume that F<231.

Sample Input 1 Sample Output 1
4 4 0 3
0 1 4 10
1 2 2 10
0 2 4 30
2 3 4 10
4 140
Sample Input 2 Sample Output 2
2 1 0 1
0 1 1000 100
1000 100000
Sample Input 3 Sample Output 3
2 1 1 0
0 1 1000 100
0 0
Hide

Please log in to submit a solution to this problem

Log in