A11765 | Water Taps
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Consider a system of $n$ water taps all pouring water into the same container. The $i$ -th water tap can be set to deliver any amount of water from $0$ to $a_{i}$ ml per second (this amount may be a real number). The water delivered by $i$ -th tap has temperature $t_{i}$ .
If for every  you set $i$ -th tap to deliver exactly $x_{i}$ ml of water per second, then the resulting temperature of water will be  (if , then to avoid division by zero we state that the resulting water temperature is $0$ ).
You have to set all the water taps in such a way that the resulting temperature is exactly $T$ . What is the maximum amount of water you may get per second if its temperature has to be $T$ ?
If for every  you set $i$ -th tap to deliver exactly $x_{i}$ ml of water per second, then the resulting temperature of water will be  (if , then to avoid division by zero we state that the resulting water temperature is $0$ ).
You have to set all the water taps in such a way that the resulting temperature is exactly $T$ . What is the maximum amount of water you may get per second if its temperature has to be $T$ ?
输入格式
The first line contains two integers $n$ and $T$ ( $1<=n<=200000$ , $1<=T<=10^{6}$ ) — the number of water taps and the desired temperature of water, respectively.
The second line contains $n$ integers $a_{1}$ , $a_{2}$ , ..., $a_{n}$ ( $1<=a_{i}<=10^{6}$ ) where $a_{i}$ is the maximum amount of water $i$ -th tap can deliver per second.
The third line contains $n$ integers $t_{1}$ , $t_{2}$ , ..., $t_{n}$ ( $1<=t_{i}<=10^{6}$ ) — the temperature of water each tap delivers.
The second line contains $n$ integers $a_{1}$ , $a_{2}$ , ..., $a_{n}$ ( $1<=a_{i}<=10^{6}$ ) where $a_{i}$ is the maximum amount of water $i$ -th tap can deliver per second.
The third line contains $n$ integers $t_{1}$ , $t_{2}$ , ..., $t_{n}$ ( $1<=t_{i}<=10^{6}$ ) — the temperature of water each tap delivers.
输出格式
Print the maximum possible amount of water with temperature exactly $T$ you can get per second (if it is impossible to obtain water with such temperature, then the answer is considered to be $0$ ).
Your answer is considered correct if its absolute or relative error doesn't exceed $10^{-6}$ .
Your answer is considered correct if its absolute or relative error doesn't exceed $10^{-6}$ .
输入输出样例
输入 #1
2 100 3 10 50 150
输出 #1
6.000000000000000
输入 #2
3 9 5 5 30 6 6 10
输出 #2
40.000000000000000
输入 #3
2 12 1 3 10 15
输出 #3
1.666666666666667
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted