A10292 | Delivery Bears
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Niwel is a little golden bear. As everyone knows, bears live in forests, but Niwel got tired of seeing all the trees so he decided to move to the city.
In the city, Niwel took on a job managing bears to deliver goods. The city that he lives in can be represented as a directed graph with $n$ nodes and $m$ edges. Each edge has a weight capacity. A delivery consists of a bear carrying weights with their bear hands on a simple path from node $1$ to node $n$ . The total weight that travels across a particular edge must not exceed the weight capacity of that edge.
Niwel has exactly $x$ bears. In the interest of fairness, no bear can rest, and the weight that each bear carries must be exactly the same. However, each bear may take different paths if they like.
Niwel would like to determine, what is the maximum amount of weight he can deliver (it's the sum of weights carried by bears). Find the maximum weight.
In the city, Niwel took on a job managing bears to deliver goods. The city that he lives in can be represented as a directed graph with $n$ nodes and $m$ edges. Each edge has a weight capacity. A delivery consists of a bear carrying weights with their bear hands on a simple path from node $1$ to node $n$ . The total weight that travels across a particular edge must not exceed the weight capacity of that edge.
Niwel has exactly $x$ bears. In the interest of fairness, no bear can rest, and the weight that each bear carries must be exactly the same. However, each bear may take different paths if they like.
Niwel would like to determine, what is the maximum amount of weight he can deliver (it's the sum of weights carried by bears). Find the maximum weight.
输入格式
The first line contains three integers $n$ , $m$ and $x$ ( $2<=n<=50$ , $1<=m<=500$ , $1<=x<=100000$ ) — the number of nodes, the number of directed edges and the number of bears, respectively.
Each of the following $m$ lines contains three integers $a_{i}$ , $b_{i}$ and $c_{i}$ ( $1<=a_{i},b_{i}<=n$ , $a_{i}≠b_{i}$ , $1<=c_{i}<=1000000$ ). This represents a directed edge from node $a_{i}$ to $b_{i}$ with weight capacity $c_{i}$ . There are no self loops and no multiple edges from one city to the other city. More formally, for each $i$ and $j$ that $i≠j$ it's guaranteed that $a_{i}≠a_{j}$ or $b_{i}≠b_{j}$ . It is also guaranteed that there is at least one path from node 1 to node $n$ .
Each of the following $m$ lines contains three integers $a_{i}$ , $b_{i}$ and $c_{i}$ ( $1<=a_{i},b_{i}<=n$ , $a_{i}≠b_{i}$ , $1<=c_{i}<=1000000$ ). This represents a directed edge from node $a_{i}$ to $b_{i}$ with weight capacity $c_{i}$ . There are no self loops and no multiple edges from one city to the other city. More formally, for each $i$ and $j$ that $i≠j$ it's guaranteed that $a_{i}≠a_{j}$ or $b_{i}≠b_{j}$ . It is also guaranteed that there is at least one path from node 1 to node $n$ .
输出格式
Print one real value on a single line — the maximum amount of weight Niwel can deliver if he uses exactly $x$ bears. Your answer will be considered correct if its absolute or relative error does not exceed $10^{-6}$ .
Namely: let's assume that your answer is $a$ , and the answer of the jury is $b$ . The checker program will consider your answer correct if .
Namely: let's assume that your answer is $a$ , and the answer of the jury is $b$ . The checker program will consider your answer correct if .
输入输出样例
输入 #1
4 4 3 1 2 2 2 4 1 1 3 1 3 4 2
输出 #1
1.5000000000
输入 #2
5 11 23 1 2 3 2 3 4 3 4 5 4 5 6 1 3 4 2 4 5 3 5 6 1 4 2 2 5 3 1 5 2 3 2 30
输出 #2
10.2222222222
In the first sample, Niwel has three bears. Two bears can choose the path , while one bear can choose the path . Even though the bear that goes on the path  can carry one unit of weight, in the interest of fairness, he is restricted to carry 0.5 units of weight. Thus, the total weight is 1.5 units overall. Note that even though Niwel can deliver more weight with just 2 bears, he must use exactly 3 bears on this day.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted