A13361 | Cow and Exercise
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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$ ).
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}$ .
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
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted