A15702 | Teleporters (Hard Version)
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The only difference between the easy and hard versions are the locations you can teleport to.
Consider the points $0,1,\dots,n+1$ on the number line. There is a teleporter located on each of the points $1,2,\dots,n$ . At point $i$ , you can do the following:
- Move left one unit: it costs $1$ coin.
- Move right one unit: it costs $1$ coin.
- Use a teleporter at point $i$ , if it exists: it costs $a_i$ coins. As a result, you can choose whether to teleport to point $0$ or point $n+1$ . Once you use a teleporter, you can't use it again.
You have $c$ coins, and you start at point $0$ . What's the most number of teleporters you can use?
Consider the points $0,1,\dots,n+1$ on the number line. There is a teleporter located on each of the points $1,2,\dots,n$ . At point $i$ , you can do the following:
- Move left one unit: it costs $1$ coin.
- Move right one unit: it costs $1$ coin.
- Use a teleporter at point $i$ , if it exists: it costs $a_i$ coins. As a result, you can choose whether to teleport to point $0$ or point $n+1$ . Once you use a teleporter, you can't use it again.
You have $c$ coins, and you start at point $0$ . What's the most number of teleporters you can use?
输入格式
The input consists of multiple test cases. The first line contains an integer $t$ ( $1 \leq t \leq 1000$ ) — the number of test cases. The descriptions of the test cases follow.
The first line of each test case contains two integers $n$ and $c$ ( $1 \leq n \leq 2\cdot10^5$ ; $1 \leq c \leq 10^9$ ) — the length of the array and the number of coins you have respectively.
The following line contains $n$ space-separated positive integers $a_1,a_2,\dots,a_n$ ( $1 \leq a_i \leq 10^9$ ) — the costs to use the teleporters.
It is guaranteed that the sum of $n$ over all test cases does not exceed $2\cdot10^5$ .
The first line of each test case contains two integers $n$ and $c$ ( $1 \leq n \leq 2\cdot10^5$ ; $1 \leq c \leq 10^9$ ) — the length of the array and the number of coins you have respectively.
The following line contains $n$ space-separated positive integers $a_1,a_2,\dots,a_n$ ( $1 \leq a_i \leq 10^9$ ) — the costs to use the teleporters.
It is guaranteed that the sum of $n$ over all test cases does not exceed $2\cdot10^5$ .
输出格式
For each test case, output the maximum number of teleporters you can use.
输入输出样例
输入 #1
10 5 6 1 1 1 1 1 8 32 100 52 13 6 9 4 100 35 1 1 5 4 5 4 3 2 1 5 9 2 3 1 4 1 5 8 2 3 1 4 1 4 3 2 3 4 1 4 9 5 4 3 3 2 14 7 5 5 600000000 500000000 400000000 300000000 200000000 100000000
输出 #1
2 3 0 1 3 2 1 1 2 2
In the first test case, you can move one unit to the right, use the teleporter at index $1$ and teleport to point $n+1$ , move one unit to the left and use the teleporter at index $5$ . You are left with $6-1-1-1-1 = 2$ coins, and wherever you teleport, you won't have enough coins to use another teleporter. You have used two teleporters, so the answer is two.
In the second test case, you go four units to the right and use the teleporter to go to $n+1$ , then go three units left and use the teleporter at index $6$ to go to $n+1$ , and finally, you go left four times and use the teleporter. The total cost will be $4+6+3+4+4+9 = 30$ , and you used three teleporters.
In the third test case, you don't have enough coins to use any teleporter, so the answer is zero.
In the second test case, you go four units to the right and use the teleporter to go to $n+1$ , then go three units left and use the teleporter at index $6$ to go to $n+1$ , and finally, you go left four times and use the teleporter. The total cost will be $4+6+3+4+4+9 = 30$ , and you used three teleporters.
In the third test case, you don't have enough coins to use any teleporter, so the answer is zero.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted