Input
The first line of input contains a line contains a line with
four non-negative integers, , , and , separated by single spaces, where is the numbers of nodes in the
graph, is the number
of edges, is the
source and is the sink
(). Nodes are
numbered from to
. Then follow
lines, each line
consisting of four (space-separated) integers , , and indicating that there is an edge
from to in the graph with capacity
and
cost .
Output
Output a single line containing two integers; the size
of a maximum flow from
node to node
, and the cost of a
mimimum cost flow of size . You may assume that .
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
|