A14823 | Road Optimization
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The Government of Mars is not only interested in optimizing space flights, but also wants to improve the road system of the planet.
One of the most important highways of Mars connects Olymp City and Kstolop, the capital of Cydonia. In this problem, we only consider the way from Kstolop to Olymp City, but not the reverse path (i. e. the path from Olymp City to Kstolop).
The road from Kstolop to Olymp City is $\ell$ kilometers long. Each point of the road has a coordinate $x$ ( $0 \le x \le \ell$ ), which is equal to the distance from Kstolop in kilometers. So, Kstolop is located in the point with coordinate $0$ , and Olymp City is located in the point with coordinate $\ell$ .
There are $n$ signs along the road, $i$ -th of which sets a speed limit $a_i$ . This limit means that the next kilometer must be passed in $a_i$ minutes and is active until you encounter the next along the road. There is a road sign at the start of the road (i. e. in the point with coordinate $0$ ), which sets the initial speed limit.
If you know the location of all the signs, it's not hard to calculate how much time it takes to drive from Kstolop to Olymp City. Consider an example:
Here, you need to drive the first three kilometers in five minutes each, then one kilometer in eight minutes, then four kilometers in three minutes each, and finally the last two kilometers must be passed in six minutes each. Total time is $3\cdot 5 + 1\cdot 8 + 4\cdot 3 + 2\cdot 6 = 47$ minutes.
To optimize the road traffic, the Government of Mars decided to remove no more than $k$ road signs. It cannot remove the sign at the start of the road, otherwise, there will be no limit at the start. By removing these signs, the Government also wants to make the time needed to drive from Kstolop to Olymp City as small as possible.
The largest industrial enterprises are located in Cydonia, so it's the priority task to optimize the road traffic from Olymp City. So, the Government of Mars wants you to remove the signs in the way described above.
One of the most important highways of Mars connects Olymp City and Kstolop, the capital of Cydonia. In this problem, we only consider the way from Kstolop to Olymp City, but not the reverse path (i. e. the path from Olymp City to Kstolop).
The road from Kstolop to Olymp City is $\ell$ kilometers long. Each point of the road has a coordinate $x$ ( $0 \le x \le \ell$ ), which is equal to the distance from Kstolop in kilometers. So, Kstolop is located in the point with coordinate $0$ , and Olymp City is located in the point with coordinate $\ell$ .
There are $n$ signs along the road, $i$ -th of which sets a speed limit $a_i$ . This limit means that the next kilometer must be passed in $a_i$ minutes and is active until you encounter the next along the road. There is a road sign at the start of the road (i. e. in the point with coordinate $0$ ), which sets the initial speed limit.
If you know the location of all the signs, it's not hard to calculate how much time it takes to drive from Kstolop to Olymp City. Consider an example:
Here, you need to drive the first three kilometers in five minutes each, then one kilometer in eight minutes, then four kilometers in three minutes each, and finally the last two kilometers must be passed in six minutes each. Total time is $3\cdot 5 + 1\cdot 8 + 4\cdot 3 + 2\cdot 6 = 47$ minutes.
To optimize the road traffic, the Government of Mars decided to remove no more than $k$ road signs. It cannot remove the sign at the start of the road, otherwise, there will be no limit at the start. By removing these signs, the Government also wants to make the time needed to drive from Kstolop to Olymp City as small as possible.
The largest industrial enterprises are located in Cydonia, so it's the priority task to optimize the road traffic from Olymp City. So, the Government of Mars wants you to remove the signs in the way described above.
输入格式
The first line contains three integers $n$ , $\ell$ , $k$ ( $1 \le n \le 500$ , $1 \le \ell \le 10^5$ , $0 \le k \le n-1$ ), the amount of signs on the road, the distance between the cities and the maximal number of signs you may remove.
The second line contains $n$ integers $d_i$ ( $d_1 = 0$ , $d_i < d_{i+1}$ , $0 \le d_i \le \ell - 1$ ) — coordinates of all signs.
The third line contains $n$ integers $a_i$ ( $1 \le a_i \le 10^4$ ) — speed limits.
The second line contains $n$ integers $d_i$ ( $d_1 = 0$ , $d_i < d_{i+1}$ , $0 \le d_i \le \ell - 1$ ) — coordinates of all signs.
The third line contains $n$ integers $a_i$ ( $1 \le a_i \le 10^4$ ) — speed limits.
输出格式
Print a single integer — minimal possible time to drive from Kstolop to Olymp City in minutes, if you remove no more than $k$ road signs.
输入输出样例
输入 #1
4 10 0 0 3 4 8 5 8 3 6
输出 #1
47
输入 #2
4 10 2 0 3 4 8 5 8 3 6
输出 #2
38
In the first example, you cannot remove the signs. So the answer is $47$ , as it's said in the statements above.
In the second example, you may remove the second and the fourth sign. In this case, you need to drive four kilometers in $4\cdot5 = 20$ minutes, and then six kilometers in $6\cdot3 = 18$ , so the total time is $4\cdot5 + 6\cdot3 = 38$ minutes.
In the second example, you may remove the second and the fourth sign. In this case, you need to drive four kilometers in $4\cdot5 = 20$ minutes, and then six kilometers in $6\cdot3 = 18$ , so the total time is $4\cdot5 + 6\cdot3 = 38$ minutes.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted