307141: CF1307G. Cow and Exercise

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Cow and Exercise

题意翻译

给出一个 $n$ 个点 $m$ 条边的**有向图**,每条边有边权 $w_i$ 。 有 $Q$ 次询问,每次询问给出一个 $x$ 。你可以把一条边修改成 $w_i+a_i$ ($a_i$ **不一定**是整数),不过需要保证 $a_i \geq 0$ 且 $\sum a_i \leq x$ 。 你要通过修改边权使得从 $1$ 到 $n$ 的最短路径尽可能长,每次询问之间**独立**。 数据保证至少存在一条从 $1$ 到 $n$ 的路径,无重边自环。 输出答案和标准答案的相对误差或绝对误差应不超过 $10^{-6}$ 。

题目描述

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 $ w_i $ 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 $ x_i $ 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 \le n \le 50 $ , $ 1 \le m \le n \cdot (n-1) $ ) — the number of fields and number of roads, respectively. Each of the following $ m $ lines contains $ 3 $ integers, $ u_i $ , $ v_i $ , and $ w_i $ ( $ 1 \le u_i, v_i \le n $ , $ 1 \le w_i \le 10^6 $ ), meaning there is an road from field $ u_i $ to field $ v_i $ that takes $ w_i $ 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 \le q \le 10^5 $ ), the number of plans. Each of the following $ q $ lines contains a single integer $ x_i $ , the query ( $ 0 \le x_i \le 10^5 $ ).

输出格式


For each query, output the maximum Farmer John can make the shortest path if the total increase does not exceed $ x_i $ . 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 $ \frac{|a - b|}{\max{(1, |b|)}} \le 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

Input

题意翻译

给出一个 $n$ 个点 $m$ 条边的**有向图**,每条边有边权 $w_i$ 。 有 $Q$ 次询问,每次询问给出一个 $x$ 。你可以把一条边修改成 $w_i+a_i$ ($a_i$ **不一定**是整数),不过需要保证 $a_i \geq 0$ 且 $\sum a_i \leq x$ 。 你要通过修改边权使得从 $1$ 到 $n$ 的最短路径尽可能长,每次询问之间**独立**。 数据保证至少存在一条从 $1$ 到 $n$ 的路径,无重边自环。 输出答案和标准答案的相对误差或绝对误差应不超过 $10^{-6}$ 。

加入题单

算法标签: