分类:
2009-06-17 21:44:57
Time Limit:5s | Memory limit:32M |
Accepted Submit:61 | Total Submit:255 |
Microhard company has just invented a brandly new speeding up device
called Bright Network Hub(BNH). The BNH can be installed on the fibers
between two nodes. When a BNH works, all the information going through
this fiber will cost half of the original time. If n BNHs are installed
on the same fiber, the speed for going through this fiber will be 2^n
times faster.
In order to improve the speed of campus network, students in FZU are
planning to buy some BNHs. Since they don't have enough money, they can
only afford to buy m BNHs. Given the network of n nodes, you are to
install these m BNHs on the proper lines, so that the time needed from
node 1 to node n can be minimized.
In the above network the minimal time needed from 1 to 5 is 44ms. Now if you have 2 BNHs. Installing both of them on the fiber 1-2, the time from 1 to 2 will become 8.5ms. However, the optimal scheme is to install them on 1-3 and 3-5.
Input
There are multiple test cases. The first line of each case contains two integers n and m (1<=n<=50, 1<=m<=10). The following n lines contains the network graph in adjcent matrix. There are n real numbers each line, representing the needed time in millisecond. If there is no fiber between two nodes, the corresponding entry will be 0. And it is guaranteed that there will always be a path from 1 to n.Output
For each case, output only one line containing the minimal time from 1 to n, accurate to two fractional digits.Sample Input
5 2
0 34 24 0 0
34 0 10 12 0
24 10 0 16 20
0 12 16 0 30
0 0 20 30 0
Sample Output
22.00
|