A15789 | Traveling in Berland
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There are $n$ cities in Berland, arranged in a circle and numbered from $1$ to $n$ in clockwise order.
You want to travel all over Berland, starting in some city, visiting all the other cities and returning to the starting city. Unfortunately, you can only drive along the Berland Ring Highway, which connects all $n$ cities. The road was designed by a very titled and respectable minister, so it is one-directional — it can only be traversed clockwise, only from the city $i$ to the city $(i \bmod n) + 1$ (i.e. from $1$ to $2$ , from $2$ in $3$ , ..., from $n$ to $1$ ).
The fuel tank of your car holds up to $k$ liters of fuel. To drive from the $i$ -th city to the next one, $a_i$ liters of fuel are needed (and are consumed in the process).
Every city has a fuel station; a liter of fuel in the $i$ -th city costs $b_i$ burles. Refueling between cities is not allowed; if fuel has run out between cities, then your journey is considered incomplete.
For each city, calculate the minimum cost of the journey if you start and finish it in that city.
You want to travel all over Berland, starting in some city, visiting all the other cities and returning to the starting city. Unfortunately, you can only drive along the Berland Ring Highway, which connects all $n$ cities. The road was designed by a very titled and respectable minister, so it is one-directional — it can only be traversed clockwise, only from the city $i$ to the city $(i \bmod n) + 1$ (i.e. from $1$ to $2$ , from $2$ in $3$ , ..., from $n$ to $1$ ).
The fuel tank of your car holds up to $k$ liters of fuel. To drive from the $i$ -th city to the next one, $a_i$ liters of fuel are needed (and are consumed in the process).
Every city has a fuel station; a liter of fuel in the $i$ -th city costs $b_i$ burles. Refueling between cities is not allowed; if fuel has run out between cities, then your journey is considered incomplete.
For each city, calculate the minimum cost of the journey if you start and finish it in that city.
输入格式
The first line contains a single integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases.
The first line of each test case contains two integers $n$ and $k$ ( $3 \le n \le 2 \cdot 10^5$ ; $1 \le k \le 10^9$ ) — the number of cities and the volume of fuel tank, respectively.
The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le k$ ).
The third line contains $n$ integers $b_1, b_2, \dots, b_n$ ( $1 \le b_i \le 2$ ).
The sum of $n$ over all test cases doesn't exceed $2 \cdot 10^5$ .
The first line of each test case contains two integers $n$ and $k$ ( $3 \le n \le 2 \cdot 10^5$ ; $1 \le k \le 10^9$ ) — the number of cities and the volume of fuel tank, respectively.
The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le k$ ).
The third line contains $n$ integers $b_1, b_2, \dots, b_n$ ( $1 \le b_i \le 2$ ).
The sum of $n$ over all test cases doesn't exceed $2 \cdot 10^5$ .
输出格式
For each test case, print $n$ integers, where the $i$ -th of them is equal to the minimum cost of the journey if you start and finish in the $i$ -th city.
输入输出样例
输入 #1
4 3 5 3 4 4 1 2 2 5 7 1 3 2 5 1 2 1 1 1 2 4 3 1 2 1 3 2 2 2 2 3 2 2 2 2 1 2 1
输出 #1
17 19 17 13 12 12 12 14 14 14 14 14 8 8 8
暂无题解
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted