CF267C.Berland Traffic
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Berland traffic is very different from traffic in other countries. The capital of Berland consists of n junctions and m roads. Each road connects a pair of junctions. There can be multiple roads between a pair of junctions. For each road we know its capacity: value ci is the maximum number of cars that can drive along a road in any direction per a unit of time. For each road, the cars can drive along it in one of two direction. That it, the cars can't simultaneously move in both directions. A road's traffic is the number of cars that goes along it per a unit of time. For road ( ai,bi ) this value is negative, if the traffic moves from bi to ai . A road's traffic can be a non-integer number.
The capital has two special junctions — the entrance to the city (junction 1) and the exit from the city (junction n ). For all other junctions it is true that the traffic is not lost there. That is, for all junctions except for 1 and n the incoming traffic sum equals the outgoing traffic sum.
Traffic has an unusual peculiarity in the capital of Berland — for any pair of junctions ( x,y ) the sum of traffics along any path from x to y doesn't change depending on the choice of the path. Such sum includes traffic along all roads on the path (possible with the "minus" sign, if the traffic along the road is directed against the direction of the road on the path from x to y ).
Your task is to find the largest traffic that can pass trough the city per one unit of time as well as the corresponding traffic for each road.
输入格式
The first line contains a positive integer n — the number of junctions ( 2<=n<=100 ). The second line contains integer m ( 1<=m<=5000 ) — the number of roads. Next m lines contain the roads' descriptions. Each road contains a group of three numbers ai , bi , ci , where ai,bi are the numbers of junctions, connected by the given road, and ci ( 1<=ai,bi<=n ; ai=bi ; 0<=ci<=10000 ) is the largest permissible traffic along this road.
输出格式
In the first line print the required largest traffic across the city. Then print m lines, on each line print the speed, at which the traffic moves along the corresponding road. If the direction doesn't match the order of the junctions, given in the input, then print the traffic with the minus sign. Print the numbers with accuracy of at least five digits after the decimal point.
If there are many optimal solutions, print any of them.
输入输出样例
输入#1
2 3 1 2 2 1 2 4 2 1 1000
输出#1
6.00000 2.00000 2.00000 -2.00000
输入#2
7 11 1 2 7 1 2 7 1 3 7 1 4 7 2 3 7 2 5 7 3 6 7 4 7 7 5 4 7 5 6 7 6 7 7
输出#2
13.00000 2.00000 2.00000 3.00000 6.00000 1.00000 3.00000 4.00000 7.00000 1.00000 2.00000 6.00000