CF1307G.Cow and Exercise
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Farmer John is obsessed with making Bessie exercise more!
Bessie is out grazing on the farm, which consists of n fields connected by m directed roads. Each road takes some time wi to cross. She is currently at field 1 and will return to her home at field n at the end of the day.
Farmer John has plans to increase the time it takes to cross certain roads. He can increase the time it takes to cross each road by a nonnegative amount, but the total increase cannot exceed xi for the i -th plan.
Determine the maximum he can make the shortest path from 1 to n for each of the q independent plans.
输入格式
The first line contains integers n and m ( 2≤n≤50 , 1≤m≤n⋅(n−1) ) — the number of fields and number of roads, respectively.
Each of the following m lines contains 3 integers, ui , vi , and wi ( 1≤ui,vi≤n , 1≤wi≤106 ), meaning there is an road from field ui to field vi that takes wi time to cross.
It is guaranteed that there exists a way to get to field n from field 1 . It is guaranteed that the graph does not contain self-loops or parallel edges. It is possible to have a road from u to v and a road from v to u .
The next line contains a single integer q ( 1≤q≤105 ), the number of plans.
Each of the following q lines contains a single integer xi , the query ( 0≤xi≤105 ).
输出格式
For each query, output the maximum Farmer John can make the shortest path if the total increase does not exceed xi .
Your answer is considered correct if its absolute or relative error does not exceed 10−6 .
Formally, let your answer be a , and the jury's answer be b . Your answer is accepted if and only if max(1,∣b∣)∣a−b∣≤10−6 .
输入输出样例
输入#1
3 3 1 2 2 2 3 2 1 3 3 5 0 1 2 3 4
输出#1
3.0000000000 4.0000000000 4.5000000000 5.0000000000 5.5000000000