Little Mislav owns
Unfortunately, it matters to Mislav what glass he picks, because not all glasses are equally distant to him. More precisely, the amount of effort it takes to pour water from glass labeled with
Help Mislav and find the order of pouring the water from one glass to another such that the sum of effort is minimal.
Input Specification
The first line of input contains integers
The following
The
Output Specification
Output the minimal effort needed for Mislav to achieve his goal.
Scoring
In test cases worth
Sample Input 1
3 3
0 1 1
1 0 1
1 1 0
Sample Output 1
0
Explanation for Sample Output 1
Mislav doesn't need to pour water in order to drink from at most
Sample Input 2
3 2
0 1 1
1 0 1
1 1 0
Sample Output 2
1
Explanation for Sample Output 2
Mislav must pour the water from precisely one (doesn't matter which) glass into any other glass in order to be left with only two glasses with water.
Sample Input 3
5 2
0 5 4 3 2
7 0 4 4 4
3 3 0 1 2
4 3 1 0 5
4 5 5 5 0
Sample Output 3
5
Explanation for Sample Output 3
In order for Mislav to achieve the minimal solution of
Comments